-
Notifications
You must be signed in to change notification settings - Fork 4
/
karma.saucelabs.conf.js
79 lines (77 loc) · 1.66 KB
/
karma.saucelabs.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
'use strict'
var customLaunchers = {
win10chrome: {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'Windows 10'
},
win10firefox: {
base: 'SauceLabs',
browserName: 'firefox',
platform: 'Windows 10'
},
osxSafari: {
base: 'SauceLabs',
browserName: 'safari',
platform: 'OS X 10.13'
},
iosSafari: {
base: 'SauceLabs',
browserName: 'iphone',
platform: 'OS X 12.1.4'
},
win10edge: {
base: 'SauceLabs',
browserName: 'MicrosoftEdge',
platform: 'Windows 10'
},
win10ie11: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 10'
}
}
module.exports = function (config) {
config.set({
sauceLabs: {
testName: 'barometer full stack tests'
},
customLaunchers: customLaunchers,
browsers: Object.keys(customLaunchers),
frameworks: [ 'mocha' ],
reporters: [ 'spec', 'saucelabs' ],
plugins: [ 'karma-mocha', 'karma-sauce-launcher', 'karma-spec-reporter' ],
singleRun: true,
autoWatch: false,
files: [
'dist/barometer.min.js',
'dist/barometer-test.js'
],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
concurrency: 5,
client: {
captureConsole: true,
timeout: 10000,
mocha: {
timeout: 10000
}
},
captureTimeout: 300000,
customHeaders: [{
name: 'Access-Control-Allow-Origin',
value: '*'
},
{
name: 'Access-Control-Allow-Methods',
value: 'GET, POST, PATCH, DELETE, OPTIONS'
}],
startConnect: true,
connectOptions: {
verbose: false,
verboseDebugging: false
},
browserNoActivityTimeout: 30000
})
}