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

Commit

Permalink
chore(ci): increase test times for ci (#3447)
Browse files Browse the repository at this point in the history
- fix flakes coming from sauce labs timeouts
  • Loading branch information
cnishina authored Aug 4, 2016
1 parent 27f7981 commit 79c75eb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion spec/ciFullConf.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ exports.config = {

baseUrl: env.baseUrl + '/ng1/',

allScriptsTimeout: 120000,
getPageTimeout: 120000,

jasmineNodeOpts: {
showTiming: true,
defaultTimeoutInterval: 90000
defaultTimeoutInterval: 120000
},

params: {
Expand Down
3 changes: 3 additions & 0 deletions spec/ciNg2Conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ exports.config.multiCapabilities = [{
'platform': 'OS X 10.9'
}];
exports.config.capabilities = undefined;
exports.config.allScriptsTimeout = 120000;
exports.config.getPageTimeout = 120000;
exports.config.jasmineNodeOpts.defaultTimeoutInterval = 120000;
6 changes: 3 additions & 3 deletions spec/ciSmokeConf.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ exports.config = {
baseUrl: env.baseUrl + '/ng1/',

// Up the timeouts for the slower browsers (IE, Safari).
allScriptsTimeout: 30000,
getPageTimeout: 30000,
allScriptsTimeout: 120000,
getPageTimeout: 120000,

jasmineNodeOpts: {
showTiming: true,
defaultTimeoutInterval: 90000
defaultTimeoutInterval: 120000
},

params: {
Expand Down

0 comments on commit 79c75eb

Please sign in to comment.