From 5051b938aeac7acb22270e843579e470452ab6ad Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 29 May 2015 01:34:20 -0400 Subject: [PATCH] Increase default timeout to 5 seconds from 2 This is arbitrary, and we could increase it more or make it configurable via the command line if Travis continue to time out, but this allows all tests to complete for me in a VM. --- test/content/runtests.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/content/runtests.js b/test/content/runtests.js index a9ae6283e..2b71c50b0 100644 --- a/test/content/runtests.js +++ b/test/content/runtests.js @@ -70,7 +70,11 @@ function Reporter(runner) { } // Setup Mocha -mocha.setup({ui:"bdd", reporter:Reporter}); +mocha.setup({ + ui: "bdd", + reporter: Reporter, + timeout: 5000 +}); // Enable Bluebird generator support in Mocha (function () {