-
Notifications
You must be signed in to change notification settings - Fork 78
/
karma.conf.js
64 lines (54 loc) · 1.4 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
// Karma configuration
// Generated on Thu Jan 28 2016 08:02:07 GMT-0700 (MST)
//
//
var istanbul = require('browserify-istanbul');
module.exports = function(config) {
config.set({
plugins: [
"babel-plugin-transform-es2015-arrow-functions",
"karma-spec-reporter",
"karma-coverage",
"karma-mocha",
"karma-chai",
"karma-chrome-launcher",
"karma-phantomjs-launcher",
"karma-browserify"
],
basePath: '',
frameworks: ['mocha', 'chai', 'browserify'],
files: [
'test/browserTests.js',
'test/index.html'
],
proxies: {
'/node_modules/':'node_modules/'
},
browserify: {
watch: true,
debug: true,
transform: [["babelify", { "presets": ["env", "es2015"], "plugins": ["transform-es2015-arrow-functions"] }]]
},
preprocessors: {
'node_modules/file-type/index.js': ['browserify'],
'test/test.js': ['browserify']
},
reporters: ['spec', 'coverage'],
coverageReporter: {
// specify a common output directory
dir: 'coverage/browser-coverage',
includeAllSources: true,
reporters: [
// reporters not supporting the `file` property
{ type: 'html', subdir: 'html' }
]
},
port: 9876,
colors: true,
logLevel: config.LOG_DEBUG,
autoWatch: false,
browsers: ['Chrome'],
singleRun: true,
concurrency: Infinity
});
};