-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
karma.conf.js
87 lines (85 loc) · 2.19 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
const path = require('path');
const { AureliaPlugin } = require('aurelia-webpack-plugin');
const webpack = require('webpack');
module.exports =
/**
* @param {import('karma').Config} config
*/
function(config) {
const browsers = config.browsers;
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'test/setup.ts'
],
preprocessors: {
'test/setup.ts': ['webpack', 'sourcemap']
},
webpack: {
mode: 'development',
resolve: {
extensions: ['.ts', '.js'],
modules: [path.resolve(__dirname, 'node_modules')],
alias: {
src: path.resolve(__dirname, 'src'),
// aliasing to this in test folder, instead of src folder
// to avoid colliding with the legacy build script
'aurelia-validation': path.resolve(__dirname, 'src/aurelia-validation'),
test: path.resolve(__dirname, 'test')
},
fallback: {
path: false
}
},
performance: {
hints: false
},
devtool: Array.isArray(browsers) && browsers.includes('ChromeDebugging') ? 'inline-source-map' : 'inline-source-map',
module: {
rules: [
{
test: /\.[jt]s$/,
use: [
{
loader: 'ts-loader',
options: {}
}
],
exclude: /node_modules/
}
]
},
plugins: [
new AureliaPlugin({
aureliaApp: undefined,
noWebpackLoader: true,
dist: 'es2015'
}),
new webpack.SourceMapDevToolPlugin({
test: /\.(ts|js|css)($|\?)/i
})
]
},
mime: {
'text/x-typescript': ['ts']
},
logLevel: config.LOG_ERROR, // to disable the WARN 404 for image requests
reporters: ['progress'],
webpackServer: { noInfo: true },
browsers: Array.isArray(browsers) && browsers.length > 0 ? browsers : ['ChromeHeadless'],
customLaunchers: {
ChromeDebugging: {
base: 'Chrome',
flags: [
'--remote-debugging-port=9333'
],
debug: true
}
},
mochaReporter: {
ignoreSkipped: true
},
singleRun: false
});
};