-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
karma.conf.js
48 lines (47 loc) · 1.24 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')
webpackCfg.devtool = 'inline-source-map'
webpackCfg.mode = 'development'
webpackCfg.module.rules[0].use.unshift('@jsdevtools/coverage-istanbul-loader')
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['mocha', 'chai'],
files: [
'src/index.ts',
'./test/CSS.spec.js',
'./test/Debugger.spec.js',
'./test/DOM.spec.js',
'./test/DOMDebugger.spec.js',
'./test/DOMStorage.spec.js',
'./test/Network.spec.js',
'./test/Overlay.spec.js',
'./test/Page.spec.js',
'./test/Runtime.spec.js',
'./test/Storage.spec.js',
],
plugins: [
'karma-mocha',
'karma-chai-plugins',
'karma-chrome-launcher',
'karma-webpack',
'karma-coverage-istanbul-reporter',
],
webpackServer: {
noInfo: true,
},
webpack: webpackCfg,
reporters: ['progress', 'coverage-istanbul'],
coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'text', 'text-summary'],
},
preprocessors: {
'src/index.ts': ['webpack'],
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeHeadless'],
singleRun: true,
concurrency: Infinity,
})
}