forked from peternewnham/react-html-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkarma.conf.js
41 lines (38 loc) · 885 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
const puppeteer = require('puppeteer');
const webpackConfig = require('./webpack.test');
process.env.CHROME_BIN = puppeteer.executablePath();
module.exports = function (karma) {
karma.set({
files: [
{
pattern: 'tests.webpack.js',
watched: true,
},
],
autoWatch: true,
logLevel: karma.LOG_INFO,
basePath: '',
singleRun: false,
frameworks: ['jasmine', 'webpack'],
preprocessors: {
'tests.webpack.js': 'webpack',
},
browsers: ['ChromeHeadless'],
colors: true,
browserNoActivityTimeout: 100000,
webpackMiddleware: {
noInfo: true,
},
webpack: webpackConfig,
reporters: ['spec', 'coverage'],
coverageReporter: {
type: 'lcov',
dir: 'coverage/',
subdir: '.',
includeAllSources: true,
},
specReporter: {
suppressSkipped: true,
},
});
};