forked from mozilla/notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
45 lines (44 loc) · 1.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
const reporters = ["mocha", "coverage"];
if (process.env.COVERALLS_REPO_TOKEN) {
reporters.push("coveralls");
}
module.exports = function(config) {
config.set({
singleRun: true,
browsers: ["Firefox"],
frameworks: ["mocha"],
reporters,
reportSlowerThan: 40,
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: [
"src/vendor/*.js",
"test/dist/unit-bundle.js",
"src/*.js",
],
// coverage preprocessor doesn't cope with ES2017
//preprocessors: {"src/*.js": ["coverage"]},
plugins: [
"karma-coveralls",
"karma-coverage",
"karma-firefox-launcher",
"karma-mocha",
"karma-mocha-reporter"
]
});
};