From 49c7b952bd3db9d192ea3074d773c07ade791869 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Tue, 20 Oct 2015 14:10:07 +0100 Subject: [PATCH] Increase timeout in ember tests no issue - increases individual test timeout from 5sec to 15sec It seems Travis is occasionally _very_ slow and will timeout on heavier acceptance tests resulting in random failures. Hopefully this will reduce the number of random test failures we see. --- ghost/admin/tests/test-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/tests/test-helper.js b/ghost/admin/tests/test-helper.js index 6fc5e93ad8..1c9e9bcb19 100644 --- a/ghost/admin/tests/test-helper.js +++ b/ghost/admin/tests/test-helper.js @@ -5,7 +5,7 @@ setResolver(resolver); /* jshint ignore:start */ mocha.setup({ - timeout: 5000, + timeout: 15000, slow: 500 }); /* jshint ignore:end */