forked from alastor0325/autoplay-shield-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
51 lines (49 loc) · 1.08 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
/* eslint-env node */
const reporters = ["mocha", "istanbul"];
if (process.env.COVERALLS_REPO_TOKEN) {
reporters.push("coveralls");
}
module.exports = function(config) {
config.set({
singleRun: true,
browsers: [
"Firefox",
"FirefoxAurora", // Firefox Beta
"FirefoxDeveloper",
"FirefoxNightly",
],
frameworks: ["mocha", "chai"],
reporters,
istanbulReporter: {
dir: "test/results/coverage",
reporters: [
{
type: "lcov",
subdir: "lcov",
},
{
type: "html",
},
{
type: "text-summary",
},
],
},
files: [
"node_modules/sinon/pkg/sinon.js",
"node_modules/sinon-chrome/bundle/sinon-chrome.min.js",
"src/feature.js",
"test/unit/*.spec.js",
],
preprocessors: { "src/feature.js": ["babel"] },
plugins: [
"karma-babel-preprocessor",
"karma-chai",
"karma-coveralls",
"karma-istanbuljs-reporter",
"karma-firefox-launcher",
"karma-mocha",
"karma-mocha-reporter",
],
});
};