parent
e8bffc2275
commit
42968949b6
2 changed files with 15 additions and 1 deletions
|
@ -672,7 +672,7 @@ Zotero.Translate.ItemGetter.prototype = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this._itemsLeft = Array.from(items.values);
|
this._itemsLeft = Array.from(items.values());
|
||||||
this.numItems = this._itemsLeft.length;
|
this.numItems = this._itemsLeft.length;
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
|
|
@ -1156,5 +1156,19 @@ describe("Zotero.Translate.ItemGetter", function() {
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("#setCollection()", function () {
|
||||||
|
it("should add collection items", function* () {
|
||||||
|
var col = yield createDataObject('collection');
|
||||||
|
var item1 = yield createDataObject('item', { collections: [col.id] });
|
||||||
|
var item2 = yield createDataObject('item', { collections: [col.id] });
|
||||||
|
var item3 = yield createDataObject('item');
|
||||||
|
|
||||||
|
let getter = new Zotero.Translate.ItemGetter();
|
||||||
|
getter.setCollection(col);
|
||||||
|
|
||||||
|
assert.equal(getter.numItems, 2);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue