From 260a638dfb0c6f01ed29e7bc6374f21c4af152c5 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 21 May 2015 23:48:58 -0400 Subject: [PATCH] Increase resetDB() timeout to 60s, though this seems untenable Still failing intermittently on Travis at 45s, though other times it takes 13 seconds. --- test/tests/supportTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/supportTest.js b/test/tests/supportTest.js index 723315340..c78f3d890 100644 --- 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();