From 057563cc51edf2180a68df130002bc6ed0a0c155 Mon Sep 17 00:00:00 2001 From: iirelu Date: Thu, 13 Feb 2014 01:12:22 +0000 Subject: [PATCH] Changed karma to have a 60000ms capture timeout The previous captureTimeout was so short that on computers with even average hardware couldn't open firefox fast enough for Karma's liking, mostly killing the process whilst firefox was still starting up. --- test/karma.conf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/karma.conf.js b/test/karma.conf.js index 6c63217..86715ab 100644 --- a/test/karma.conf.js +++ b/test/karma.conf.js @@ -57,8 +57,8 @@ module.exports = function(config) { browsers : ['Firefox'], // If browser does not capture in given timeout [ms], kill it - // CLI --capture-timeout 5000 - captureTimeout : 5000, + // CLI --capture-timeout 60000 + captureTimeout : 60000, // Auto run tests on start (when browsers are captured) and exit // CLI --single-run --no-single-run