This repository was archived by the owner on Jul 13, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -98,16 +98,15 @@ module.exports = function(config) {
98
98
99
99
if ( options . saucelabs ) {
100
100
101
- var customLaunchers ;
102
-
103
- // IE tests disabled for now
104
- /*
105
- customLaunchers = geSaLaKaCuLa({
101
+ var customLaunchers = geSaLaKaCuLa ( {
106
102
'Windows 7' : {
107
103
'internet explorer' : '9..11'
108
104
}
109
105
} ) ;
110
- */
106
+
107
+
108
+ // IE tests disabled for now (https://github.com/ModuleLoader/es6-module-loader/issues/295)
109
+ customLaunchers = undefined ;
111
110
112
111
if ( options . ie8 ) {
113
112
customLaunchers = geSaLaKaCuLa ( {
@@ -143,18 +142,20 @@ module.exports = function(config) {
143
142
browserNoActivityTimeout : 30000 ,
144
143
captureTimeout : 120000 ,
145
144
146
- browsers : Object . keys ( customLaunchers ) ,
147
145
sauceLabs : {
148
146
testName : pkg . name ,
149
147
recordScreenshots : false ,
150
148
build : build ,
151
149
tunnelIdentifier : options . travis ?
152
150
process . env . TRAVIS_JOB_NUMBER : Math . floor ( Math . random ( ) * 1000 )
153
- } ,
154
- customLaunchers : customLaunchers
151
+ }
155
152
} ) ;
156
153
157
-
154
+ if ( customLaunchers )
155
+ config . set ( {
156
+ browsers : Object . keys ( customLaunchers ) ,
157
+ customLaunchers : customLaunchers
158
+ } ) ;
158
159
}
159
160
} ;
160
161
You can’t perform that action at this time.
0 commit comments