forked from taiga-family/taiga-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.config.js
61 lines (61 loc) · 1.91 KB
/
karma.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = function (config, path = '') {
config.set({
basePath: '',
frameworks: ['jasmine-ajax', 'jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('karma-jasmine-ajax'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma'),
],
client: {
clearContext: false,
},
logLevel: config.LOG_DISABLE,
/**
* @note: override logger behavior
*/
browserConsoleLogOptions: {
/**
* @note: support debugging by console.log in *.spec.ts
*/
level: 'debug',
format: '%b %T: %m',
terminal: true,
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage', path),
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true,
},
reporters: ['kjhtml'],
port: 9876,
colors: true,
autoWatch: true,
browsers: ['ChromeHeadless'],
singleRun: true,
customLaunchers: {
/**
* @description:
* browsers: ['ChromeNoHeadless']
* use for visual debugging
*/
ChromeNoHeadless: {
base: 'Chrome',
flags: ['--disable-web-security', '--remote-debugging-port=9222'],
},
ChromeHeadless: {
base: 'Chrome',
flags: [
'--no-sandbox',
'--headless',
'--disable-gpu',
'--disable-web-security',
'--remote-debugging-port=9222',
],
},
},
});
};