From bfce770b635f3fbbcbf32b9faba54f0cb3c84d1c Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Wed, 12 Mar 2025 10:52:11 -0400 Subject: [PATCH] Shorten timeout for waiting for page change --- playwright-tests/pages/BasePage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright-tests/pages/BasePage.ts b/playwright-tests/pages/BasePage.ts index 9c01dde5..6d2d5462 100644 --- a/playwright-tests/pages/BasePage.ts +++ b/playwright-tests/pages/BasePage.ts @@ -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 }); } } \ No newline at end of file