From cd63f96eee064943b442ebfcdae6897b554381ac Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 18 Jan 2021 04:14:36 -0500 Subject: [PATCH] Increase DOI Content Negotiation timeout during lookup tests Probably a temporary problem, but it's timing out on some runs at 10 seconds --- test/tests/lookupTest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/lookupTest.js b/test/tests/lookupTest.js index a87d30809a..fd9f170d0a 100644 --- a/test/tests/lookupTest.js +++ b/test/tests/lookupTest.js @@ -42,7 +42,7 @@ describe("Add Item by Identifier", function() { }); it("should add a DOI", function() { - this.timeout(10000); + this.timeout(20000); return lookupIdentifier(win, "10.4103/0976-500X.85940").then(function(ids) { var item = Zotero.Items.get(ids[0]); assert.equal(item.getField("title"), "Zotero: A bibliographic assistant to researcher"); @@ -63,7 +63,7 @@ describe("Add Item by Identifier", function() { }); it("should add an item within a collection", function* () { - this.timeout(10000); + this.timeout(20000); var col = yield createDataObject('collection'); yield waitForItemsLoad(win);