Disable flaky Advanced Search test on CI

Re-enable after we figure out #4375, but this is breaking PR CI runs
right now.
This commit is contained in:
Abe Jellinek 2024-07-11 10:58:08 -04:00
parent 0ea3d232f0
commit c3e927e52f

View file

@ -17,6 +17,11 @@ describe("Advanced Search", function () {
});
it("should perform a search", function* () {
if (Zotero.automatedTest) {
// TEMP: React timing issue on CI - figure this out
this.skip();
}
var item = yield createDataObject('item', { setTitle: true });
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xhtml', async (win) => {