Shorten timeout for waiting for page change

This commit is contained in:
Alex Humphries 2025-03-12 10:52:11 -04:00
parent 0300d35f86
commit bfce770b63

View file

@ -131,6 +131,6 @@ export class BasePage {
await expect(async () => {
const currentUrl = this.page.url();
expect(currentUrl).not.toEqual(startingUrl);
}).toPass({ timeout: 180_000 });
}).toPass({ timeout: 60_000 });
}
}