www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 5051b938aeac7acb22270e843579e470452ab6ad
parent 025411f9b4e6f6d37eb9c98fc771b9990c4dd011
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 29 May 2015 01:34:20 -0400

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.

Diffstat:
Mtest/content/runtests.js | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git 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 () {