# HG changeset patch # User Andrew Azores # Date 1507918665 14400 # Node ID c64e2518bae5141f9c71277c2f7a01f25ebf73c6 # Parent 1ad5abbce4fc95108c1ca81f525cf09f3f09289e Increase timeout lengths and retry counts for Karma unit test runner Reviewed-by: jkang Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-October/025387.html diff -r 1ad5abbce4fc -r c64e2518bae5 karma.conf.js --- a/karma.conf.js Fri Oct 13 14:17:39 2017 -0400 +++ b/karma.conf.js Fri Oct 13 14:17:45 2017 -0400 @@ -63,6 +63,18 @@ port: 9876, + singleRun: true, + + captureTimeout: 60000, // one minute + + browserDisconnectTimeout: 60000, + + browserDisconnectTolerance: 3, + + browserNoActivityTimeout: 60000, + + retryLimit: 3, + colors: true, browsers: ['PhantomJS'], @@ -75,8 +87,6 @@ webpackMiddleware: { noInfo: 'errors-only' - }, - - singleRun: true + } }); };