Avoid a warning from a storageRequest test from the item not existing
This commit is contained in:
parent
e1fb28faa9
commit
c0f7f6070a
|
@ -5,10 +5,11 @@ describe("Zotero.Sync.Storage.Request", function () {
|
||||||
it("should run a request and wait for it to complete", function* () {
|
it("should run a request and wait for it to complete", function* () {
|
||||||
var libraryID = Zotero.Libraries.userLibraryID;
|
var libraryID = Zotero.Libraries.userLibraryID;
|
||||||
var count = 0;
|
var count = 0;
|
||||||
|
var item = yield importFileAttachment('test.png');
|
||||||
var request = new Zotero.Sync.Storage.Request({
|
var request = new Zotero.Sync.Storage.Request({
|
||||||
type: 'download',
|
type: 'download',
|
||||||
libraryID,
|
libraryID,
|
||||||
name: "1/AAAAAAAA",
|
name: `${item.libraryID}/${item.key}`,
|
||||||
onStart: Zotero.Promise.coroutine(function* () {
|
onStart: Zotero.Promise.coroutine(function* () {
|
||||||
yield Zotero.Promise.delay(25);
|
yield Zotero.Promise.delay(25);
|
||||||
count++;
|
count++;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user