-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
43 lines (42 loc) · 951 Bytes
/
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
function grep(argv) {
let found = false;
return argv.filter((a) => {
if (found) return a;
if (a === '--') found = true;
return false;
});
}
module.exports = (config) => {
config.set({
frameworks: ['jasmine'],
files: [
'./src/unit.js',
'./src/test/helper/fixtures.js',
'./src/test/helper/requiredError.js',
...grep(process.argv),
],
reporters: ['spec', 'coverage'],
colors: true,
browsers: ['ChromeHeadless'],
preprocessors: {
'./src/*.js': 'coverage',
},
coverageReporter: {
dir: './coverage',
reporters: [
{ type: 'html', subdir: 'html' },
{ type: 'text' },
],
},
specReporter: {
suppressErrorSummary: false,
suppressFailed: false,
suppressPassed: false,
suppressSkipped: false,
showSpecTiming: true,
failTest: true,
},
logLevel: config.LOG_INFO,
singleRun: true,
});
};