-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathkarma.conf.js
48 lines (46 loc) · 1.11 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
const webpackCfg = require('./webpack.config'),
path = require('path');
// Set node environment to testing
process.env.NODE_ENV = 'test';
module.exports = function(config) {
config.set({
basePath: '',
browsers: ['ChromeHeadless'],
customLaunchers: {
ChromeHeadless: {
base: 'Chrome',
flags: [
'--no-sandbox',
'--headless',
'--disable-gpu',
'--remote-debugging-port=23366'
]
}
},
files: ['test/loadtests.js'],
port: 8000,
captureTimeout: 60000,
frameworks: ['mocha', 'chai'],
client: {
mocha: {}
},
singleRun: true,
reporters: ['mocha', 'coverage'],
preprocessors: {
'test/loadtests.js': ['webpack', 'sourcemap']
},
webpack: webpackCfg,
webpackServer: {
noInfo: true
},
coverageReporter: {
// specify a common output directory
dir: path.join(__dirname, 'coverage'),
reporters: [
{ type: 'html', subdir: 'report-html' },
{ type: 'lcovonly', subdir: '.', file: 'report-lcovonly.txt' },
{ type: 'text' }
]
}
});
};