-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
78 lines (76 loc) · 1.63 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
75
76
77
78
let path = require("path");
process.env.NODE_ENV = "test";
module.exports = function (config) {
config.set({
browsers: ["Chrome", "Firefox", "ChromeHeadless"],
singleRun: true,
colors: true,
basePath: "",
frameworks: ["jasmine", "sinon"],
preprocessors: {
"test/**/*.test.js": ["webpack", "sourcemap"],
"test/**/*.test.jsx": ["webpack", "sourcemap"]
},
files: [
"node_modules/babel-polyfill/dist/polyfill.js",
{pattern: "test/**/*.test.js"},
{pattern: "test/**/*.test.jsx"},
],
reporters: ["mocha", "coverage"], //report results in this format
coverageReporter: {
reporters: [
{
type: "text-summary"
},
{
type: "html",
dir: "coverage"
}
]
},
webpack: {
devtool: "inline-source-map",
resolve: {
extensions: [".js", ".jsx"]
},
module: {
exprContextCritical: false,
rules: [
{
enforce: "pre",
test: /\.js$/,
exclude: [path.resolve("node_modules"), path.resolve("src")],
loaders: ["babel-loader"]
},
{
enforce: "pre",
test: /\.jsx?$/,
exclude: path.resolve("node_modules"),
include: path.resolve("src"),
// loaders: ["isparta-loader"]
loaders: ["babel-loader"]
}
]
},
externals: {
"react/addons": true,
"react/lib/ExecutionEnvironment": true,
"react/lib/ReactContext": true
}
},
webpackServer: {
noInfo: true
},
plugins: [
"karma-webpack",
"karma-jasmine",
"karma-sinon",
"karma-coverage",
"karma-sourcemap-loader",
"karma-chrome-launcher",
"karma-firefox-launcher",
"karma-phantomjs-launcher",
"karma-mocha-reporter"
]
});
};