Merge pull request #1153 from strongloop/fix/phantomjs-timeouts-on-travis

karma conf: prevent timeouts on Travis CI
This commit is contained in:
Miroslav Bajtoš 2015-03-03 10:07:38 +01:00
commit 03ad328aac
1 changed files with 5 additions and 0 deletions

View File

@ -61,6 +61,11 @@ module.exports = function(config) {
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000,
// to avoid DISCONNECTED messages
browserDisconnectTimeout : 10000, // default 2000
browserDisconnectTolerance : 1, // default 0
browserNoActivityTimeout : 60000, //default 10000
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false,