-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
74 lines (69 loc) · 1.72 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
process.env.TEST = true;
process.env.NODE_ENV = "test";
const webpack = require("webpack");
const path = require("path");
const webpackConfig = require("./webpack.config.js")();
delete webpackConfig.entry;
module.exports = function (config) {
var configuration = {
basePath: "",
frameworks: [
"mocha",
"chai",
"sinon"
],
files: [
{ pattern: './node_modules/babel-polyfill/browser.js', instrument: false},
"./node_modules/promise-polyfill/dist/promise.js",
"./node_modules/string.prototype.startswith/startswith.js",
"./test/**/**/**.test.ts",
{
pattern: "**/*.map",
served: true,
included: false,
watched: true
}
],
preprocessors: {
"./**/**/**/**.ts": ["sourcemap", "webpack"],
"./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",
"karma-phantomjs-launcher"
],
reporters: (
config.singleRun ? ["mocha", "coverage-istanbul"] : ["dots"]
),
coverageIstanbulReporter: {
reports: ["html", "text", "text-summary"],
dir: "coverage",
fixWebpackSourcePaths: true,
"report-config": {
html: {
subdir: "html-report"
}
}
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
singleRun: true,
browsers: ["PhantomJS"]
};
config.set(configuration);
};