forked from qndrey/react-pick-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
69 lines (56 loc) · 1.65 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
var isCIEnvironment = process.env.CONTINUOUS_INTEGRATION === 'true';
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: __dirname,
// frameworks to use
frameworks: ['mocha'],
// list of files / patterns to load in the browser
files: [
'src/**/__tests__/*.js'
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
preprocessors: {
'src/**/__tests__/*.js': ['webpack', 'sourcemap']
},
webpack: {
devtool: 'inline-source-map',
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['react', 'es2015', 'stage-2'],
plugins: ['transform-runtime']
}
}
]
}
},
plugins: [
require('karma-chrome-launcher'),
require('karma-firefox-launcher'),
require('karma-sourcemap-loader'),
require('karma-mocha'),
require('karma-webpack')
],
// test results reporter to use
reporters: ['dots'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
logLevel: config.LOG_INFO,
// make it work on Travis CI; based on:
// <https://github.com/rackt/react-router/blob/master/karma.conf.js>
browsers: isCIEnvironment ? ['Firefox'] : ['Chrome'],
browserNoActivityTimeout: isCIEnvironment ? 90000 : 1000,
singleRun: isCIEnvironment
});
};