-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
karma.conf.js
74 lines (67 loc) · 2.05 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
const puppeteer = require("puppeteer");
process.env.TEST = true;
process.env.NODE_ENV = "test";
process.env.CHROME_BIN = puppeteer.executablePath();
const webpackConfig = require("./webpack.config.js")({ production: false, karma: true });
delete webpackConfig.entry;
delete webpackConfig.output.filename;
module.exports = (config) => {
"use strict";
var configuration = {
basePath: "",
frameworks: ["webpack", "mocha", "sinon-chai"],
files: [
{ pattern: "node_modules/reflect-metadata/Reflect.js", include: true },
{ pattern: "node_modules/bluebird/js/browser/bluebird.js", include: true },
{ pattern: "./test/index.ts", include: true },
{ pattern: "**/*.map", served: true, included: false, watched: true }
],
preprocessors: {
"./test/index.ts": ["webpack"],
"./**/**/**/**.ts": ["sourcemap"]
},
webpack: webpackConfig,
webpackMiddleware: {
noInfo: true
},
plugins: [
"karma-webpack",
"karma-sourcemap-writer",
"karma-sourcemap-loader",
"karma-mocha-reporter",
"karma-mocha",
"karma-sinon-chai",
"karma-coverage-istanbul-reporter"
],
mime: {
"text/x-typescript": ["ts", "tsx"]
},
reporters: config.singleRun ? ["dots", "mocha", "coverage-istanbul"] : ["dots", "mocha"],
coverageIstanbulReporter: {
"reports": ["html", "lcov", "lcovonly", "text-summary"],
"dir": "coverage",
"combineBrowserReports": true,
"fixWebpackSourcePaths": true,
"skipFilesWithNoCoverage": true,
"report-config": {
html: {
subdir: "html-report"
}
}
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: [],
browserNoActivityTimeout: 50000
};
if (process.env.TRAVIS) {
configuration.browsers.push("ChromeHeadless");
configuration.plugins.push("karma-chrome-launcher");
} else {
configuration.browsers.push("ChromeHeadless");
configuration.plugins.push("karma-chrome-launcher");
}
config.set(configuration);
};