-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.conf.js
More file actions
94 lines (93 loc) · 2.32 KB
/
karma.conf.js
File metadata and controls
94 lines (93 loc) · 2.32 KB
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
var path = require('path');
module.exports = function (config) {
config.set({
files: [
'node_modules/phantomjs-polyfill/bind-polyfill.js',
'node_modules/sinon/pkg/sinon.js',
'spec/context.js'
],
frameworks: ['mocha'],
preprocessors: {
'spec/context.js': ['webpack', 'sourcemap']
},
client: {
chai: {
includeStack: true
}
},
reporters: ['spec', 'coverage'],
coverageReporter: {
dir: 'build/coverage/',
reporters: [{
type: 'text'
},
{
type: 'text-summary'
},
{
type: 'html'
}
]
},
logLevel: config.LOG_INFO,
webpack: {
module: {
loaders: [{
test: /\.js$/,
loader: 'source-map-loader',
enforce: 'pre'
}, {
test: /\.js$/,
exclude: /(node_modules)|(Gulpfile\.tmp)|(assets)/,
loader: 'babel-loader',
options: {
presets: ['es2015'],
plugins: [
['transform-es2015-classes', {
'loose': true
}], 'transform-object-assign'
]
}
}, {
test: /\.hbs$/,
exclude: /(node_modules)|(Gulpfile\.tmp)|(assets)/,
loader: 'handlebars-template-loader'
}, {
test: /\.json$/,
include: /(src\/data)/,
exclude: /(node_modules)|(Gulpfile\.tmp)|(assets)/,
loader: 'json-loader'
}, {
test: /\.js/,
exclude: /(test|node_modules|bower_components)/,
loader: 'istanbul-instrumenter-loader',
enforce: 'post'
}]
},
resolve: {
extensions: ['.webpack.js', '.web.js', '.js'],
modules: [
'node_modules',
'src',
'example'
],
alias: {
modules: path.join(__dirname, 'node_modules')
}
},
target: 'node',
devtool: 'inline-source-map'
},
plugins: [
require('karma-webpack'),
require('istanbul-instrumenter-loader'),
require('karma-mocha'),
require('karma-coverage'),
require('karma-phantomjs-launcher'),
require('karma-spec-reporter'),
require('karma-sourcemap-loader')
],
browsers: ['PhantomJS'],
browserNoActivityTimeout: '50000'
});
};