-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkarma.conf.js
executable file
·58 lines (56 loc) · 1.29 KB
/
karma.conf.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
const path = require('path');
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = (config) => {
config.set({
browsers: [
'ChromeHeadlessNoSandbox',
'FirefoxHeadless'
],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
},
FirefoxHeadless: {
base: 'Firefox',
flags: ['-headless']
}
},
browserNoActivityTimeout: 60000,
singleRun: true,
frameworks: ['jasmine'],
files: [
{
pattern: 'test/*.js',
watched: false
}
],
preprocessors: {
'test/*.js': ['webpack']
},
webpack: {
mode: 'development',
module: {
rules: [
{
test: /\.js$/,
use: {
loader: 'istanbul-instrumenter-loader',
options: {
esModules: true
}
},
include: path.resolve(__dirname, 'test'),
exclude: /((node_modules|docs|dist)(\\|\/|$)|test\.js$)/
}
]
}
},
reporters: ['coverage-istanbul'],
coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true,
skipFilesWithNoCoverage: true
}
});
};