-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathkarma.conf.js
31 lines (31 loc) · 846 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
/* eslint-env node */
module.exports = function (config) {
config.set({
browsers: [
'FirefoxHeadless'
// 'ChromiumHeadless'
// 'ChromeHeadless'
],
frameworks: ['qunit'],
files: [
'src/MyLib.js',
'test/*.test.js'
],
autoWatch: false,
singleRun: true,
preprocessors: {
'src/*.js': ['coverage']
},
reporters: ['dots', 'coverage'],
coverageReporter: {
reporters: [
{ type: 'lcov', dir: '.nyc_output/' },
// Karma uses subdirs by default to account for multiple browsers.
// For the JSON file, it's important we disable 'subdir' so that
// the 'nyc report' command can pick this up when combining code
// coverage with the Node.js test run.
{ type: 'json', dir: '.nyc_output/', subdir: '.' }
]
}
});
};