-
Notifications
You must be signed in to change notification settings - Fork 3
/
karma.conf.js
173 lines (139 loc) · 3.58 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* 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) {
const localBrowsers = ['Chrome'];
const githubBrowsers = ['Chrome'];
let browsers;
if (process.env.GITHUB_ACTIONS) {
// This is a CI run on GitHub.
console.log('Running on GitHub.');
browsers = githubBrowsers;
} else {
// This is a local run.
console.log('Running locally.');
const localBrowsersEnv = process.env.KARMA_BROWSERS;
browsers = localBrowsersEnv ? localBrowsersEnv.split(',') : localBrowsers;
}
config.set({
browsers,
concurrency: 1,
files: getTestFiles(config),
frameworks: [
'mocha',
'chai',
'webpack',
],
reporters: [
'mocha',
'coverage',
],
browserConsoleLogOptions: {
level: 'log',
format: '%b %T: %m',
terminal: true,
},
client: {
mocha: {
timeout: 4000,
},
},
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.
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();
};
}],
},
],
});
};