Test change to see if pipeline flakiness improves

This commit is contained in:
JennyNou 2026-04-08 11:22:57 -04:00
parent 25472fabef
commit 6ca20a80a0

View file

@ -129,9 +129,6 @@ export class BasePage {
}
async waitForURLToChange(startingUrl: string) {
await expect(async () => {
const currentUrl = this.page.url();
expect(currentUrl).not.toEqual(startingUrl);
}).toPass({ timeout: 70_000 });
await this.page.waitForURL(url => url.href !== startingUrl, { timeout: 70_000 });
}
}