Commit 20d3fb66 authored by Solly Ross's avatar Solly Ross

Increase Karma-Sauce Connector Timeout

This commit increases the browserNoActivityTimeout to 100s
(from the default of 10s) in an attempt to alliviate the
timeout issues that we are seeing.
parent 88224c3f
...@@ -178,7 +178,10 @@ module.exports = function(config) { ...@@ -178,7 +178,10 @@ module.exports = function(config) {
// Increase timeout in case connection is slow/we run more browsers than possible // Increase timeout in case connection is slow/we run more browsers than possible
// (we currently get 3 for free, and we try to run 7, so it can take a while) // (we currently get 3 for free, and we try to run 7, so it can take a while)
captureTimeout: 240000 captureTimeout: 240000,
// similarly to above
browserNoActivityTimeout: 100000,
}; };
if (useSauce) { if (useSauce) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment