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:
parent
0ea3d232f0
commit
c3e927e52f
1 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,11 @@ describe("Advanced Search", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should perform a 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 item = yield createDataObject('item', { setTitle: true });
|
||||||
|
|
||||||
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xhtml', async (win) => {
|
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xhtml', async (win) => {
|
||||||
|
|
Loading…
Reference in a new issue