Merge pull request #1153 from strongloop/fix/phantomjs-timeouts-on-travis
karma conf: prevent timeouts on Travis CI
This commit is contained in:
commit
03ad328aac
|
@ -61,6 +61,11 @@ module.exports = function(config) {
|
||||||
// If browser does not capture in given timeout [ms], kill it
|
// If browser does not capture in given timeout [ms], kill it
|
||||||
captureTimeout: 60000,
|
captureTimeout: 60000,
|
||||||
|
|
||||||
|
// to avoid DISCONNECTED messages
|
||||||
|
browserDisconnectTimeout : 10000, // default 2000
|
||||||
|
browserDisconnectTolerance : 1, // default 0
|
||||||
|
browserNoActivityTimeout : 60000, //default 10000
|
||||||
|
|
||||||
// Continuous Integration mode
|
// Continuous Integration mode
|
||||||
// if true, it capture browsers, run tests and exit
|
// if true, it capture browsers, run tests and exit
|
||||||
singleRun: false,
|
singleRun: false,
|
||||||
|
|
Loading…
Reference in New Issue