www

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

commit 260a638dfb0c6f01ed29e7bc6374f21c4af152c5
parent f4446e268d618f433c2c0f9498c252606abaf5a4
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 21 May 2015 23:48:58 -0400

Increase resetDB() timeout to 60s, though this seems untenable

Still failing intermittently on Travis at 45s, though other times it
takes 13 seconds.

Diffstat:
Mtest/tests/supportTest.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/tests/supportTest.js b/test/tests/supportTest.js @@ -1,7 +1,7 @@ describe("Support Functions for Unit Testing", function() { describe("resetDB", function() { it("should restore the DB to factory settings", function* () { - this.timeout(45000); + this.timeout(60000); yield Zotero.Items.erase(1); assert.isFalse(yield Zotero.Items.getAsync(1)); yield resetDB();