-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkarma.conf.js
105 lines (102 loc) · 2.36 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
// Karma configuration file, see link for more information
// https://karma-runner.github.io/0.13/config/configuration-file.html
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
plugins: [
'karma-jasmine',
'karma-chrome-launcher',
'karma-jasmine-html-reporter',
'karma-webpack'
],
files: [
{
pattern: './test/demo/javascript/togglific.js',
watched: false,
served: true,
included: false,
nocache: false
},
{
pattern: './src/bundles/bookmarklet/bundle.js',
watched: false,
served: true,
included: false,
nocache: false
},
{
pattern: './test/demo/**/*.*',
watched: false,
served: true,
included: false,
nocache: false
},
{
pattern: './src/components/*.component.spec.js',
watched: true,
served: true,
included: true,
nocache: false
},
{
pattern: './test/assets/init.js',
watched: false,
served: true,
included: false,
nocache: false
},
{
pattern: './test/index.js',
watched: true,
served: true,
included: true,
nocache: false
}
],
exclude: [],
preprocessors: {
'./src/components/*.component.spec.js': ['webpack'],
'./test/index.js': ['webpack']
},
webpackMiddleware: {
noInfo: true,
stats: 'errors-only'
},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
failOnEmptyTestSuite: false,
browsers: ['ChromeHeadless'],
singleRun: true,
concurrency: Infinity,
webpack: {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
}
]
}
},
webpackServer: {
noInfo: true
},
customLaunchers: {
ChromeHeadless: {
base: 'Chrome',
flags: [
// See https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md
'--headless',
'--disable-gpu',
// Without a remote debugging port, Google Chrome exits immediately.
'--remote-debugging-port=9222'
]
}
}
});
};