Skip to content

Commit

Permalink
Extend timeout in two tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Mar 4, 2019
1 parent 7fa0f6c commit 0d636ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tests/lookupTest.js
Expand Up @@ -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");
Expand All @@ -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);
Expand Down

0 comments on commit 0d636ee

Please sign in to comment.