Test change to see if pipeline flakiness improves
This commit is contained in:
parent
25472fabef
commit
6ca20a80a0
1 changed files with 1 additions and 4 deletions
|
|
@ -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 });
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue