Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit f4e6b40

Browse files
committed
fix(runner): webdriver could get into lock when there is async promise
1 parent 91135f2 commit f4e6b40

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

lib/runner.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,16 @@ Runner.prototype.run = function() {
237237
}).then(function() {
238238
driver = self.driverprovider_.getDriver();
239239
});
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
242246
}).then(function() {
243247
var deferred = q.defer();
244-
driver.manage().timeouts().setScriptTimeout(self.config_.allScriptsTimeout);
245248
self.setupGlobals_.bind(self)(driver);
246249

247-
248250
// Do the framework setup here so that jasmine and mocha globals are
249251
// available to the onPrepare function.
250252
var frameworkPath = '';
@@ -266,7 +268,7 @@ Runner.prototype.run = function() {
266268

267269
return deferred.promise;
268270

269-
// 3) Teardown
271+
// 4) Teardown
270272
}).then(function(result) {
271273
self.emit('testsDone', result.failedCount);
272274
testResult = result;
@@ -279,7 +281,7 @@ Runner.prototype.run = function() {
279281
} else {
280282
return self.driverprovider_.teardownEnv();
281283
}
282-
// 4) Exit process
284+
// 5) Exit process
283285
}).then(function() {
284286
var passed = testResult.failedCount === 0;
285287
var exitCode = passed ? 0 : 1;

0 commit comments

Comments
 (0)