File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change
1
+ # !/bin/bash
2
+
3
+ # Fill these if you run Sauce Labs tests locally.
4
+ export SAUCE_USERNAME =
5
+ export SAUCE_ACCESS_KEY =
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ module.exports = function(config) {
28
28
singleRun : true ,
29
29
30
30
sauceLabs : {
31
- startConnect : false ,
31
+ startConnect : true ,
32
32
testName : 'ProgressBar.js' ,
33
33
build : process . env . TRAVIS_BUILD_NUMBER || 'manual' ,
34
- tunnelIdentifier : process . env . TRAVIS_BUILD_NUMBER || 'autoGeneratedTunnelID' ,
34
+ tunnelIdentifier : process . env . TRAVIS_BUILD_NUMBER ,
35
35
recordVideo : true
36
36
} ,
37
37
Original file line number Diff line number Diff line change @@ -7,24 +7,24 @@ module.exports = {
7
7
sauce_chrome : {
8
8
base : 'SauceLabs' ,
9
9
browserName : 'chrome' ,
10
- platform : 'OS X 10.9 ' ,
11
- version : '60 '
10
+ platform : 'macOS 10.15 ' ,
11
+ version : 'latest '
12
12
} ,
13
13
14
14
// Safari
15
15
sauce_safari : {
16
16
base : 'SauceLabs' ,
17
17
browserName : 'safari' ,
18
- platform : 'OS X 10.12 ' ,
19
- version : '11 '
18
+ platform : 'macOS 10.15 ' ,
19
+ version : 'latest '
20
20
} ,
21
21
22
22
// Firefox
23
23
sauce_firefox : {
24
24
base : 'SauceLabs' ,
25
25
browserName : 'firefox' ,
26
26
platform : 'Windows 10' ,
27
- version : '55 '
27
+ version : 'latest '
28
28
} ,
29
29
30
30
// Internet explorer
@@ -46,6 +46,6 @@ module.exports = {
46
46
base : 'SauceLabs' ,
47
47
browserName : 'MicrosoftEdge' ,
48
48
platform : 'Windows 10' ,
49
- version : '20.10240 '
49
+ version : 'latest '
50
50
} ,
51
51
} ;
You can’t perform that action at this time.
0 commit comments