This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -237,14 +237,16 @@ Runner.prototype.run = function() {
237
237
} ) . then ( function ( ) {
238
238
driver = self . driverprovider_ . getDriver ( ) ;
239
239
} ) ;
240
-
241
- // 2) Execute test cases
240
+ // 2) Webdriver could schedule this out of order if not in separate 'then'
241
+ // See https://github.com/angular/protractor/issues/1385
242
+ } ) . then ( function ( ) {
243
+ return driver . manage ( ) . timeouts ( )
244
+ . setScriptTimeout ( self . config_ . allScriptsTimeout ) ;
245
+ // 3) Execute test cases
242
246
} ) . then ( function ( ) {
243
247
var deferred = q . defer ( ) ;
244
- driver . manage ( ) . timeouts ( ) . setScriptTimeout ( self . config_ . allScriptsTimeout ) ;
245
248
self . setupGlobals_ . bind ( self ) ( driver ) ;
246
249
247
-
248
250
// Do the framework setup here so that jasmine and mocha globals are
249
251
// available to the onPrepare function.
250
252
var frameworkPath = '' ;
@@ -266,7 +268,7 @@ Runner.prototype.run = function() {
266
268
267
269
return deferred . promise ;
268
270
269
- // 3 ) Teardown
271
+ // 4 ) Teardown
270
272
} ) . then ( function ( result ) {
271
273
self . emit ( 'testsDone' , result . failedCount ) ;
272
274
testResult = result ;
@@ -279,7 +281,7 @@ Runner.prototype.run = function() {
279
281
} else {
280
282
return self . driverprovider_ . teardownEnv ( ) ;
281
283
}
282
- // 4 ) Exit process
284
+ // 5 ) Exit process
283
285
} ) . then ( function ( ) {
284
286
var passed = testResult . failedCount === 0 ;
285
287
var exitCode = passed ? 0 : 1 ;
You can’t perform that action at this time.
0 commit comments