-
Notifications
You must be signed in to change notification settings - Fork 3
/
karma.conf.js
executable file
·52 lines (51 loc) · 1.52 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
const reporters = ["mocha", "coverage"];
if (process.env.COVERALLS_REPO_TOKEN) {
reporters.push("coveralls");
}
module.exports = function(config) {
config.set({
singleRun: true,
concurrency: Infinity,
port: 9876, // karma web server port
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ["Firefox"],
frameworks: ["mocha", "chai"],
reporters,
coverageReporter: {
dir: "build/coverage",
reporters: [
{
type: "lcov",
subdir: "lcov"
},
{
type: "html",
subdir(browser) {
// normalization process to keep a consistent browser name
// across different OS
return browser.toLowerCase().split(/[ /-]/)[0];
}
}, {type: "text-summary"}
]
},
files: [
"node_modules/sinon/pkg/sinon.js",
"node_modules/sinon-chrome/bundle/sinon-chrome.min.js",
"src/keywords.js",
"src/*.js",
"test/*.test.js"
],
preprocessors: {"src/*.js": ["coverage"]},
plugins: [
"karma-chai",
"karma-webpack",
"karma-coveralls",
"karma-coverage",
"karma-firefox-launcher",
"karma-mocha",
"karma-mocha-reporter"
]
});
};