-
Notifications
You must be signed in to change notification settings - Fork 2
/
karma.conf.js
152 lines (124 loc) · 3.21 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* eslint no-console: "off" */
const path = require('path');
const getTestFiles = (config) => {
if (config.file) {
return config.file.split(',');
}
return ['test/specs/index.js'];
};
module.exports = function karma(config) {
// This is a local run.
const localBrowsers = ['Chrome'];
console.log('Running locally.');
const browsers = localBrowsers;
config.set({
browsers,
files: getTestFiles(config),
frameworks: [
'mocha',
'chai',
'webpack',
],
reporters: [
'mocha',
'coverage',
],
browserConsoleLogOptions: {
level: 'log',
format: '%b %T: %m',
terminal: true,
},
autoWatch: true,
singleRun: config.singleRun === 'true',
preprocessors: {
'test/**/*.+(js|jsx)': [
'webpack',
'sourcemap',
],
},
webpack: {
mode: 'development',
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: path.resolve(__dirname, 'node_modules'),
use: [
{
loader: 'babel-loader',
},
],
},
{
test: /\.css$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[folder]-[name]--[local]',
},
},
},
],
},
{
test: /\.(png|jpg|svg)$/,
type: 'asset/inline',
},
],
},
resolve: {
extensions: ['.js', '.jsx'],
},
},
// Make webpack output less verbose, so Travis can display the entire log.
webpackMiddleware: {
stats: {
chunks: false,
},
},
port: 9876,
colors: true,
// Code will have been instrumented via Babel and babel-plugin-istanbul
// when NODE_ENV is 'test' (see .babelrc).
coverageReporter: {
type: 'json',
dir: 'coverage/',
},
// Add middleware to fall back to the base path.
// This allows running React Router with browser history.
beforeMiddleware: ['fallbackMiddleware'],
plugins: [
...config.plugins,
{
'middleware:fallbackMiddleware': ['factory', function create() {
const contextPath = '/context.html';
const debugPath = '/debug.html';
return function fallback(req, res, next) {
let basePath = null;
if (req.url.startsWith(contextPath)) {
basePath = contextPath;
} else if (req.url.startsWith(debugPath)) {
basePath = debugPath;
}
if (basePath) {
const rest = req.url.substring(basePath.length);
if (rest.indexOf('.') >= 0) {
const parts = rest.split('/');
const last = parts.pop();
req.url = `/${last}`; // eslint-disable-line no-param-reassign
} else {
req.url = basePath; // eslint-disable-line no-param-reassign
}
}
next();
};
}],
},
],
});
};