Temporarily disable intermittently failing tests (#4139)

This commit is contained in:
Dan Stillman 2024-05-22 23:01:41 -04:00
parent 59afef6c2e
commit debe5590f2

View file

@ -676,7 +676,7 @@ describe("Item pane", function () {
* AttachmentsBox serves as a good example since it involves both sync and async rendering. * AttachmentsBox serves as a good example since it involves both sync and async rendering.
* If this test fails, it is not recommended to add timeouts as a quick fix. * If this test fails, it is not recommended to add timeouts as a quick fix.
*/ */
it("should keep attachments pane status after changing selection", async function () { it.skip("should keep attachments pane status after changing selection", async function () {
let itemDetails = ZoteroPane.itemPane._itemDetails; let itemDetails = ZoteroPane.itemPane._itemDetails;
let attachmentsBox = itemDetails.getPane(paneID); let attachmentsBox = itemDetails.getPane(paneID);
let preview = attachmentsBox._preview; let preview = attachmentsBox._preview;
@ -1013,7 +1013,7 @@ describe("Item pane", function () {
assert.equal(label.value, newTitle); assert.equal(label.value, newTitle);
}); });
it("should show attachment pane in library for attachment item", async function () { it.skip("should show attachment pane in library for attachment item", async function () {
// Regular item: hide // Regular item: hide
let itemDetails = ZoteroPane.itemPane._itemDetails; let itemDetails = ZoteroPane.itemPane._itemDetails;
let box = itemDetails.getPane(paneID); let box = itemDetails.getPane(paneID);