This repository was archived by the owner on Dec 5, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -115,16 +115,6 @@ function configureSauceLabs (config) {
115
115
} ;
116
116
117
117
config . customLaunchers = {
118
- SauceLabs_Chrome_Latest : {
119
- base : 'SauceLabs' ,
120
- platform : 'Windows 10' ,
121
- browserName : 'chrome'
122
- } ,
123
- SauceLabs_Firefox_Latest : {
124
- base : 'SauceLabs' ,
125
- platform : 'Windows 10' ,
126
- browserName : 'firefox'
127
- } ,
128
118
SauceLabs_Safari_Latest : {
129
119
base : 'SauceLabs' ,
130
120
platform : 'macOS 10.12' ,
@@ -140,6 +130,16 @@ function configureSauceLabs (config) {
140
130
platform : 'Windows 10' ,
141
131
browserName : 'microsoftedge'
142
132
} ,
133
+ SauceLabs_Chrome_Latest : {
134
+ base : 'SauceLabs' ,
135
+ platform : 'Windows 10' ,
136
+ browserName : 'chrome'
137
+ } ,
138
+ SauceLabs_Firefox_Latest : {
139
+ base : 'SauceLabs' ,
140
+ platform : 'Windows 10' ,
141
+ browserName : 'firefox'
142
+ } ,
143
143
} ;
144
144
145
145
config . reporters . push ( 'saucelabs' ) ;
Original file line number Diff line number Diff line change 30
30
describe ( suite , function ( ) {
31
31
var tests = Object . keys ( testData [ suite ] ) ;
32
32
33
- if ( host . env . CI && host . karma && host . browser && ( host . browser . IE || host . browser . safari ) ) {
34
- // These browsers sporadically fail when run in SauceLabs via Karma .
33
+ if ( host . env . CI && host . karma && host . browser ) {
34
+ // We have too many tests, which causes SauceLabs browser tests to frequently fail .
35
35
// So only run a subset of the tests to reduce the chance of failure.
36
36
tests = tests . filter ( function ( test , index ) {
37
37
if ( index % 25 === 0 ) {
You can’t perform that action at this time.
0 commit comments