From f9435387974def9efaf326d5fce9272c3e425cb7 Mon Sep 17 00:00:00 2001 From: Ben McCann Date: Sat, 21 Oct 2017 13:16:18 -0700 Subject: [PATCH] Attempt to fix test flakiness --- karma.conf.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/karma.conf.js b/karma.conf.js index 3ef7f49bfa7..946cd85a353 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -14,7 +14,10 @@ module.exports = function(karma) { browserify: { debug: true - } + }, + + browserNoActivityTimeout: 100000, + browserDisconnectTolerance: 5 }; // https://swizec.com/blog/how-to-run-javascript-tests-in-chrome-on-travis/swizec/6647