-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
karma.conf-sauce.js
99 lines (86 loc) · 2.77 KB
/
karma.conf-sauce.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
var _ = require('underscore');
// Browsers to run on Sauce Labs platforms
var sauceBrowsers = _.reduce([
['firefox', 'latest'],
['firefox', '60'],
['firefox', '40'],
// TODO: find a way to get testing on old Firefox to work. (#4253)
// ['firefox', '11'],
['chrome', 'latest'],
['chrome', '60'],
// TODO: these versions of Chrome fail with a mysterious
// "_T_ is not defined" (#4253)
// ['chrome', '40'],
// ['chrome', '26'],
// latest Edge as well as pre-Blink versions
['microsoftedge', 'latest', 'Windows 11'],
['microsoftedge', '18', 'Windows 10'],
['microsoftedge', '13', 'Windows 10'],
['internet explorer', 'latest', 'Windows 10'],
// TODO: these versions of IE run 50 out of 425 tests, then hang for unknown
// reasons. (#4253)
// ['internet explorer', '10', 'Windows 8'],
// ['internet explorer', '9', 'Windows 7'],
// Older versions of IE no longer supported by Sauce Labs
['safari', 'latest', 'macOS 12'],
['safari', '12', 'macOS 10.14'],
['safari', '11', 'macOS 10.13'],
['safari', '8', 'OS X 10.10'],
], function(memo, platform) {
// internet explorer -> ie
var label = platform[0].split(' ');
if (label.length > 1) {
label = _.invoke(label, 'charAt', 0);
}
label = (label.join('') + '_v' + platform[1]).replace(' ', '_').toUpperCase();
memo[label] = _.pick({
base: 'SauceLabs',
browserName: platform[0],
version: platform[1],
platform: platform[2]
}, Boolean);
return memo;
}, {});
module.exports = function(config) {
if ( !process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY ) {
// eslint-disable-next-line no-console
console.log('Sauce environments not set --- Skipping');
return process.exit(0);
}
config.set({
basePath: '',
frameworks: ['qunit'],
singleRun: true,
browserDisconnectTimeout: 60000,
browserDisconnectTolerance: 2,
browserNoActivityTimeout: 60000,
// list of files / patterns to load in the browser
files: [
'test/vendor/jquery.js',
'test/vendor/json2.js',
'test/vendor/underscore.js',
'backbone.js',
'debug-info.js',
'test/setup/*.js',
'test/*.js'
],
// Number of sauce tests to start in parallel
concurrency: 4,
// test results reporter to use
reporters: ['dots', 'saucelabs'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
sauceLabs: {
build: 'GH #' + process.env.BUILD_NUMBER + ' (' + process.env.BUILD_ID + ')',
startConnect: true,
tunnelIdentifier: process.env.JOB_NUMBER,
region: 'eu'
},
captureTimeout: 60000,
customLaunchers: sauceBrowsers,
// Browsers to launch, commented out to prevent karma from starting
// too many concurrent browsers and timing sauce out.
browsers: _.keys(sauceBrowsers)
});
};