forked from webex/webex-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
browsers.js
63 lines (60 loc) · 1.43 KB
/
browsers.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
'use strict';
/* eslint camelcase: [0] */
module.exports = {
local: {
Chrome: {}
},
sauce: {
// Reminder: the first item in this object is used by pipeline builds
sl_chrome_45_osx9: {
base: 'SauceLabs',
platform: 'OS X 10.9',
browserName: 'chrome',
version: '45'
},
sl_firefox_40_osx9: {
base: 'SauceLabs',
platform: 'OS X 10.9',
browserName: 'firefox',
version: '40'
},
// FIXME Safari 8 still makes the test suite run too slowly
// sl_safari_8_osx10: {
// base: 'SauceLabs',
// platform: 'OS X 10.10',
// browserName: 'safari',
// version: '8'
// },
// FIXME spec/client/device.js makes IE run really slowly
// sl_ie_10_win7: {
// base: 'SauceLabs',
// platform: 'Windows 7',
// browserName: 'internet explorer',
// version: '10'
// },
// sl_ie_11_win7: {
// base: 'SauceLabs',
// platform: 'Windows 7',
// browserName: 'internet explorer',
// version: '11'
// },
sl_chrome_46_win7: {
base: 'SauceLabs',
platform: 'Windows 7',
browserName: 'chrome',
version: '46'
},
sl_firefox_41_win7: {
base: 'SauceLabs',
platform: 'Windows 7',
browserName: 'firefox',
version: '41'
},
sl_firefox_41_linux: {
base: 'SauceLabs',
platform: 'Linux',
browserName: 'firefox',
version: 41
}
}
};