-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathkarma.conf.js
55 lines (43 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
49
50
51
52
53
54
55
const webpack = require('webpack'); // eslint-disable-line import/no-extraneous-dependencies
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = (config) => {
const { env } = process;
config.set({
frameworks: ['mocha', 'webpack', 'sinon-chai'],
files: ['test/index.js', { pattern: 'test/**/*.test.js', watched: false }],
preprocessors: {
'test/**.js': ['webpack', 'sourcemap'],
},
webpack: {
mode: 'development',
module: {
rules: [
{ test: /\.js$/, exclude: /node_modules/, use: 'babel-loader' },
],
},
plugins: [
new webpack.DefinePlugin({
__DEV__: true,
}),
],
},
webpackMiddleware: {
noInfo: true,
},
reporters: ['mocha', 'coverage'],
mochaReporter: {
output: 'autowatch',
},
coverageReporter: {
type: 'lcov',
dir: 'coverage',
},
customLaunchers: {
ChromeCi: {
base: 'ChromeHeadless',
flags: ['--no-sandbox'],
},
},
browsers: env.BROWSER ? env.BROWSER.split(',') : ['Chrome'],
});
};