-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkarma.conf.js
84 lines (67 loc) · 1.8 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
// Karma configuration
const path = require('path');
const webpackConfig = {
devtool: 'inline-source-map',
externals: {
'cheerio': 'window',
'react/addons': true,
'react/lib/ExecutionEnvironment': true,
'react/lib/ReactContext': true
},
module: {
preLoaders: [{
test: /\.(js|jsx)$/,
loader: 'isparta-loader',
include: [
path.join(__dirname, '/src')
]
}],
loaders: [{
test: /\.(png|jpg|gif|woff|woff2|css|sass|scss|less|styl)$/,
loader: 'null-loader'
}, {
test: /\.(js|jsx)$/,
loader: 'babel-loader',
include: [
path.join(__dirname, '/src'),
path.join(__dirname, '/test')
]
}]
}
};
module.exports = function(config) {
config.set({
basePath: __dirname,
frameworks: ['jasmine'],
files: [
'test/loadtests.js'
],
exclude: [ ],
preprocessors: {
'test/loadtests.js': [ 'webpack', 'sourcemap' ]
},
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
// start these browsers
// browsers: ['PhantomJS', 'Chrome', 'IE'],
browsers: ['PhantomJS'],
singleRun: false,
// Concurrency level
concurrency: Infinity,
coverageReporter: {
dir: 'coverage/',
reporters: [
{ type: 'html' },
{ type: 'text' }
]
},
webpack: webpackConfig,
webpackServer: {
noInfo: true
}
})
}