-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
58 lines (44 loc) · 1.24 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
var aliases = require('./package.json').aliasify.aliases;
var dirnameRegExp = new RegExp(__dirname);
var coverageifyConfig = {
ignores: [
/\.json$/,
/__tests__/,
/__imtegration__/,
/__mocks__/
],
contains: [
dirnameRegExp
]
};
process.env.NODE_PATH = __dirname;
module.exports = function(config) {
config.set({
basePath: './',
frameworks: ['browserify', 'mocha'],
files: [
'lib-test/global.js',
'aliasify-mocks/**/__tests__/*-test.js'
],
preprocessors: {
'lib-test/global.js': [ 'browserify' ],
'aliasify-mocks/**/__tests__/*-test.js': [ 'browserify' ]
},
browserify: {
debug: true,
transform: [ ['coverageify', coverageifyConfig], [ 'rewireify' ], 'aliasify' ]
},
browsers : ['PhantomJS'],
reporters: ['progress', 'coverage'],
coverageReporter : {
dir: 'test-coverage',
reporters: [
{type: 'html', subdir: 'html'},
{type: 'cobertura', subdir: 'cobertura'}
]
},
logLevel: config.LOG_ERROR,
singleRun: false,
autoWatch: true
});
};