forked from mb389/projectcamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
100 lines (88 loc) · 2.81 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
var path = require('path');
var webpack = require('webpack');
module.exports = function(config) {
config.set({
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera (has to be installed with `npm install karma-opera-launcher`)
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
// - PhantomJS
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
browsers: ['jsdom'],
frameworks: ['mocha', 'sinon'],
// Point karma at the tests.webpack.js
files: [
'tests.webpack.js'
],
// Run karma through preprocessor plugins
preprocessors: {
'tests.webpack.js': [ 'webpack', 'sourcemap' ]
},
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: true,
// How long will Karma wait for a message from a browser before disconnecting
// from it (in ms).
browserNoActivityTimeout: 30000,
webpack: {
devtool: 'inline-source-map',
context: path.join(__dirname, "app"),
module: {
loaders: [
{
test: /\.js$|\.jsx$/,
loader: 'babel',
// Reason why we put this here instead of babelrc
// https://github.com/gaearon/react-transform-hmr/issues/5#issuecomment-142313637
query: {
"presets": ["es2015", "react", "stage-0"],
"plugins": [
"transform-react-remove-prop-types",
"transform-react-constant-elements",
"transform-react-inline-elements"
]
},
include: path.join(__dirname, 'app'),
exclude: path.join(__dirname, '/node_modules/')
},
{ test: /\.json$/, loader: "json-loader" },
{ test: /\.css$/, loader: "null-loader" }
],
},
resolve: {
extensions: ['', '.js', '.jsx', '.css'],
modulesDirectories: [
'app', 'node_modules'
]
},
node: {
fs: "empty"
},
watch: true
},
webpackMiddleware: {
// webpack-dev-middleware configuration
noInfo: true
},
webpackServer: {
noInfo: true // Do not spam the console when running in karma
},
plugins: [
'karma-jsdom-launcher',
'karma-mocha',
'karma-sinon',
'karma-mocha-reporter',
'karma-sourcemap-loader',
'karma-webpack',
],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage',
// 'mocha' (added in plugins)
reporters: ['mocha'],
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
});
};