forked from angular/zone.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sauce-selenium3.conf.js
49 lines (38 loc) · 1.28 KB
/
sauce-selenium3.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
// Sauce configuration with Welenium drivers 3+
module.exports = function(config) {
// The WS server is not available with Sauce
config.files.unshift('test/saucelabs.js');
var customLaunchers = {
'SL_CHROME60':
{base: 'SauceLabs', browserName: 'Chrome', platform: 'Windows 10', version: '60.0'},
'SL_SAFARI11':
{base: 'SauceLabs', browserName: 'safari', platform: 'macOS 10.13', version: '11.1'},
};
config.set({
captureTimeout: 120000,
browserNoActivityTimeout: 240000,
sauceLabs: {
testName: 'Zone.js',
startConnect: false,
recordVideo: false,
recordScreenshots: false,
options: {
'selenium-version': '3.5.0',
'command-timeout': 600,
'idle-timeout': 600,
'max-duration': 5400
}
},
customLaunchers: customLaunchers,
browsers: Object.keys(customLaunchers),
reporters: ['dots', 'saucelabs'],
singleRun: true,
plugins: ['karma-*']
});
if (process.env.TRAVIS) {
config.sauceLabs.build =
'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
config.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
process.env.SAUCE_ACCESS_KEY = process.env.SAUCE_ACCESS_KEY.split('').reverse().join('');
}
};