-
Notifications
You must be signed in to change notification settings - Fork 2
/
karma.conf.js
48 lines (47 loc) · 1.5 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
// Karma configuration
// Generated on Wed Jun 20 2018 16:46:14 GMT+0200 (CEST)
const webpackConfig = require('./webpack.config.js');
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['mocha', 'chai', 'sinon'],
files: [
// we use 1 bundle for testing
{ pattern: 'lib/test/index.js' },
],
exclude: ['**/embed.js'],
preprocessors: {
// the bundle goes through webpack, and will emit (inline) source maps, which karma needs to read again
'lib/test/index.js': ['webpack', 'sourcemap'],
},
webpack: {
module: {
rules: webpackConfig[0].module.rules,
},
// source mapping without inline does not seem to work
devtool: 'inline-source-map',
mode: 'development',
resolve: {
extensions: ['.js'],
},
},
reporters: ['progress', 'mocha'],
port: 9876,
colors: true,
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
autoWatch: true,
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['ChromeHeadless'],
customLauncher: {
ChromeHeadless: {
base: 'ChromeHeadless',
flags: ['--headless', '--remote-debugging-port=9222'],
},
},
// if true, Karma captures browsers, runs the tests and exits
singleRun: true,
// how many browser should be started simultaneous
concurrency: Infinity,
});
};