-
Notifications
You must be signed in to change notification settings - Fork 1
/
karma.conf.js
58 lines (55 loc) · 1.74 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
'use strict'
const customLaunchers = {
win10chrome: { base: 'SauceLabs', browserName: 'chrome', platform: 'Windows 10' },
win10firefox: { base: 'SauceLabs', browserName: 'firefox', platform: 'Windows 10' },
win10ie11: { base: 'SauceLabs', browserName: 'internet explorer', platform: 'Windows 10' },
// Commented the below out for the time being as it's timing out a lot and failing builds randomly:
// win7ie9: { base: 'SauceLabs', browserName: 'internet explorer', platform: 'Windows 7', version: '9.0' },
androidChrome: { base: 'SauceLabs', browserName: 'android', platform: 'Linux' },
iosSafari: { base: 'SauceLabs', browserName: 'iphone', platform: 'OS X 10.10' },
iosSafari92: { base: 'SauceLabs', browserName: 'iphone', platform: 'OS X 10.10', version: '9.2' }
}
module.exports = function (config) {
config.set({
browsers: [ 'Chrome' ],
singleRun: true,
frameworks: [ 'mocha' ],
files: [
'test/tests.webpack.js'
],
preprocessors: {
'test/tests.webpack.js': [ 'webpack', 'sourcemap' ]
},
reporters: [ 'spec', 'saucelabs' ],
webpack: {
devtool: 'inline-source-map',
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: [ 'es2015' ]
}
}]
}
},
webpackServer: {
noInfo: true
},
client: {
captureConsole: true,
timeout: 10000
}
})
if (process.env.USE_CLOUD) {
config.customLaunchers = customLaunchers
config.browsers = Object.keys(customLaunchers)
config.startConnect = true
config.connectOptions = {
verbose: false,
verboseDebugging: false
}
config.browserNoActivityTimeout = 30000
}
}