From c023dc19d3706748095dfa51f1b10d30d9244c26 Mon Sep 17 00:00:00 2001 From: Randall Krauskopf Date: Tue, 8 Jan 2019 09:00:22 -0600 Subject: [PATCH] increase mocha timeout for sauce labs. --- test/fixtures/mocha.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/mocha.js b/test/fixtures/mocha.js index bf8816c3..5d0b2d1f 100644 --- a/test/fixtures/mocha.js +++ b/test/fixtures/mocha.js @@ -16,7 +16,7 @@ // Most of our tests perform multiple AJAX requests, // so we need to increase the timeouts to allow for that - this.currentTest.timeout(isSlowEnvironment ? 10000 : 4000); + this.currentTest.timeout(isSlowEnvironment ? 20000 : 4000); this.currentTest.slow(1000); });