Skip to content

Commit

Permalink
e2e: script-related timeouts -> 60 seconds
Browse files Browse the repository at this point in the history
Should help with cases where IE has bombed due to
angular/angular.js#10214, by failing out of
the test before SauceLabs ditches it in a way that causes protractor
to lose track of it.

At best, we may have an IE test failure that no longer hangs the entire
e2e suite until such time as Travis times the whole thing out. :)
  • Loading branch information
laurelnaiad committed Jan 22, 2015
1 parent d8cd899 commit 46af3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser/dev-tasks/e2e/protractor.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ var ctx = require('../context');

var ptorConfig = {
stackTrace: false,
getPageTimeout: 720000,
allScriptsTimeout: 720000,
getPageTimeout: 45000,
allScriptsTimeout: 45000,
baseUrl: ctx.options.envs.e2e.addresses.webApp.href,
rootElement: 'html',
chromeOnly: false,
Expand Down

0 comments on commit 46af3f0

Please sign in to comment.