-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkarma.conf.js
82 lines (81 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const webpack = require('webpack');
const {npm_config_single_file: TEST_FILE} = process.env;
module.exports = function(config) {
config.set({
browsers: ['Chrome'],
autoWatch: true,
client: {
captureConsole: false,
mocha: {
ui: 'bdd',
timeout: 10000
}
},
singleRun: false,
frameworks: ['mocha', 'sinon'],
files: [
'test.config.js'
],
preprocessors: {
'test.config.js': ['webpack', 'sourcemap']
},
reporters: ['spec'],
webpack: {
devtool: 'inline-source-map',
module: {
rules: [
{ test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
babelrc: false,
presets: ['es2015', 'react', 'es2017'],
plugins: ['rewire', 'transform-decorators-legacy']
}
},
{
test: /\.json$/,
loader: 'json'
}
]
},
externals: {
'jsdom': 'window',
'cheerio': 'window',
'react/lib/ExecutionEnvironment': true,
'react/addons': true,
'react/lib/ReactContext': 'window',
'sinon': 'window.sinon'
},
resolve: {
modules: [
'src',
'node_modules'
],
extensions: ['.json', '.js']
},
plugins: [
new webpack.IgnorePlugin(/\.json$/),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
__CLIENT__: true,
__SERVER__: false,
__DEVELOPMENT__: true,
__DEVTOOLS__: false,
'process.env': {
TEST_FILE: JSON.stringify(TEST_FILE || ''),
NODE_ENV: JSON.stringify('development')
}
}),
new webpack.ProvidePlugin({
'global.sinon': 'sinon',
'window.sinon': 'sinon',
'sinon': 'sinon'
})
]
},
webpackServer: {
stats: 'errors-only'
}
});
};