-
Notifications
You must be signed in to change notification settings - Fork 6
/
karma.conf.js
91 lines (75 loc) · 2.01 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
const path = require('path');
var reportOutput;
if (process.env.TRAVIS) {
reportOutput = [{type: 'lcovonly', dir: 'coverage/'}];
} else {
reportOutput = [
{type: 'text'},
{type: 'text-summary'},
{type: 'html', dir: 'coverage/', subdir: 'report/'}
];
}
const webpackConfig = {
devtool: 'inline-source-map',
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: path.resolve(__dirname, 'node_modules'),
query: {
plugins: ['transform-decorators-legacy', 'transform-regenerator'],
presets: ['react', 'es2015', 'stage-1']
}
},
{ test: /\.css$/, loader: 'style-loader!css-loader' },
{ test: /\.less$/, loader: 'style-loader!css-loader!less-loader' },
{ test: /\.gif$/, loader: 'url-loader?mimetype=image/png' },
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'file-loader?name=[name].[ext]' }
]
},
externals: {
'react/addons': true,
'react/lib/ExecutionEnvironment': true,
'react/lib/ReactContext': true
}
};
module.exports = function(config) {
config.set({
basePath: '',
browsers: ['PhantomJS'],
frameworks: ['mocha'],
files: [
'node_modules/babel-polyfill/dist/polyfill.js',
'test/test-grabber.js'
],
preprocessors: {
'test/test-grabber.js': ['webpack', 'sourcemap']
},
reporters: ['nyan', 'coverage'],
nyanReporter: {
suppressErrorHighlighting: true,
},
coverageReporter: {
reporters: reportOutput,
},
webpack: webpackConfig,
webpackServer: {
noInfo: true
},
browserConsoleLogOptions: {
level: 'log',
terminal: true
},
client: {
captureConsole: false
},
browserNoActivityTimeout: 15000,
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
singleRun: false,
});
};