commit a5ce4d2a668f3d528aa606da62660309fcd974bb
parent 35837935713c32ae3c36c80eb5e92160a3e392c1
Author: Simon Kornblith <simon@simonster.com>
Date: Wed, 11 Mar 2015 14:35:55 -0400
Lengthen timeout for ISBN tests
I think the failures are actually LoC timing out.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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");