From a5ce4d2a668f3d528aa606da62660309fcd974bb Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Wed, 11 Mar 2015 14:35:55 -0400 Subject: [PATCH] Lengthen timeout for ISBN tests I think the failures are actually LoC timing out. --- test/tests/lookup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/lookup.js b/test/tests/lookup.js index 829b3260f8..9602ec4d44 100644 --- a/test/tests/lookup.js +++ b/test/tests/lookup.js @@ -20,14 +20,14 @@ describe("Add Item by Identifier", function() { }); it("should add an ISBN-10", function() { - this.timeout(10000); + this.timeout(20000); return lookupIdentifier(win, "0838985890").then(function(ids) { var item = Zotero.Items.get(ids[0]); assert.equal(item.getField("title"), "Zotero: a guide for librarians, researchers, and educators"); }); }); it("should add an ISBN-13", function() { - this.timeout(10000); + this.timeout(20000); return lookupIdentifier(win, "978-0838985892").then(function(ids) { var item = Zotero.Items.get(ids[0]); assert.equal(item.getField("title"), "Zotero: a guide for librarians, researchers, and educators");