Skip to content
This repository was archived by the owner on Nov 22, 2022. It is now read-only.

Commit 6262490

Browse files
Update browser versions for CI testing
Chrome on Android is excluded for now because it is consitently failing to capture.
1 parent 7819b30 commit 6262490

File tree

1 file changed

+45
-11
lines changed

1 file changed

+45
-11
lines changed

packages/library/test/_karma/sauce.conf.js

Lines changed: 45 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
// Karma configuration
22

33
const customLaunchers = {
4+
sl_chrome_last: {
5+
base: 'SauceLabs',
6+
browserName: 'chrome',
7+
version: 'latest-1',
8+
platform: 'Windows 10',
9+
},
410
sl_chrome_latest: {
511
base: 'SauceLabs',
612
browserName: 'chrome',
@@ -13,6 +19,12 @@ const customLaunchers = {
1319
version: 'beta',
1420
platform: 'Windows 10',
1521
},
22+
sl_firefox_last: {
23+
base: 'SauceLabs',
24+
browserName: 'firefox',
25+
version: 'latest-1',
26+
platform: 'Windows 10',
27+
},
1628
sl_firefox_latest: {
1729
base: 'SauceLabs',
1830
browserName: 'firefox',
@@ -25,43 +37,57 @@ const customLaunchers = {
2537
version: 'beta',
2638
platform: 'Windows 10',
2739
},
40+
sl_edge_last: {
41+
base: 'SauceLabs',
42+
browserName: 'MicrosoftEdge',
43+
version: 'latest-1',
44+
platform: 'Windows 10',
45+
},
2846
sl_edge_latest: {
2947
base: 'SauceLabs',
30-
browserName: 'microsoftedge',
48+
browserName: 'MicrosoftEdge',
3149
version: 'latest',
3250
platform: 'Windows 10',
3351
},
3452
// Edge beta is not available (yet?)
53+
sl_safari_last: {
54+
base: 'SauceLabs',
55+
browserName: 'safari',
56+
platform: 'macOS 10.14',
57+
version: 'latest',
58+
},
3559
sl_safari_latest: {
3660
base: 'SauceLabs',
3761
browserName: 'safari',
38-
platform: 'OS X 10.13',
62+
platform: 'macOS 10.15',
3963
version: 'latest',
4064
},
4165
// Safari beta is not available (yet?)
4266
// Mobile browsers -----------------------------------------------------------
43-
sl_android_6: {
67+
/*
68+
sl_android_8: {
4469
base: 'SauceLabs',
4570
browserName: 'Chrome',
4671
platform: 'Android',
47-
version: '6.0',
48-
deviceName: 'Android Emulator',
72+
version: '8.1',
73+
deviceName: 'Android GoogleAPI Emulator',
4974
deviceOrientation: 'portrait'
5075
},
51-
sl_android_7: {
76+
sl_android_9: {
5277
base: 'SauceLabs',
78+
appiumVersion: '1.9.1',
5379
browserName: 'Chrome',
5480
platform: 'Android',
55-
version: '7.1',
81+
platformVersion: '9.0',
5682
deviceName: 'Android GoogleAPI Emulator',
5783
deviceOrientation: 'portrait'
5884
},
59-
/*
60-
sl_android_8: {
85+
sl_android_10: {
6186
base: 'SauceLabs',
87+
appiumVersion: '1.9.1',
6288
browserName: 'Chrome',
63-
platform: 'Android',
64-
version: '8.1',
89+
platformName: 'Android',
90+
platformVersion: '10.0',
6591
deviceName: 'Android GoogleAPI Emulator',
6692
deviceOrientation: 'portrait'
6793
},
@@ -82,6 +108,14 @@ const customLaunchers = {
82108
deviceName: 'iPhone XS Simulator',
83109
deviceOrientation: 'portrait'
84110
},
111+
sl_ios_13: {
112+
base: 'SauceLabs',
113+
browserName: 'Safari',
114+
platform: 'iOS',
115+
version: '13.0',
116+
deviceName: 'iPhone XS Simulator',
117+
deviceOrientation: 'portrait'
118+
},
85119
}
86120

87121
module.exports = (config) => {

0 commit comments

Comments
 (0)