-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
80 lines (74 loc) · 1.78 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
process.env.TEST = true;
process.env.NODE_ENV = 'test';
const webpack = require("webpack");
const path = require("path");
const webpackConfig = require('./webpack.config.js')({isTest: true});
delete webpackConfig.entry;
module.exports = function(config) {
var configuration = {
basePath: "",
frameworks: [
"mocha",
"chai",
"sinon",
"es6-shim"
],
files: [
"./test/**/**/**.test.ts",
{
pattern: '**/*.map',
served: true,
included: false,
watched: true
}
],
preprocessors: {
"./**/**/**/**.ts": ["sourcemap"],
"./test/**/**/**.test.ts": ["webpack"]
},
webpack: webpackConfig,
webpackMiddleware: {
noInfo: true
},
plugins: [
"karma-webpack",
"karma-sourcemap-writer",
"karma-sourcemap-loader",
"karma-remap-istanbul",
"karma-mocha-reporter",
"karma-mocha",
"karma-chai",
"karma-sinon",
"karma-es6-shim",
"karma-coverage-istanbul-reporter"
],
reporters: (
config.singleRun ?
["dots", "mocha", "coverage-istanbul"] :
["dots", "mocha"]
),
coverageIstanbulReporter: {
reports: ["html", "lcov", "lcovonly", "text-summary"],
dir: "coverage",
fixWebpackSourcePaths: true,
"report-config": {
html: {
subdir: "html-report"
}
}
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome']
};
if (process.env.TRAVIS) {
configuration.browsers = ['PhantomJS'];
configuration.plugins.push("karma-phantomjs-launcher");
} else {
configuration.browsers = ['PhantomJS'];
configuration.plugins.push("karma-phantomjs-launcher");
}
config.set(configuration);
};