diff --git a/packages/internal-playwright-helpers/src/fixtures.ts b/packages/internal-playwright-helpers/src/fixtures.ts index 65521b66..bf285a3e 100644 --- a/packages/internal-playwright-helpers/src/fixtures.ts +++ b/packages/internal-playwright-helpers/src/fixtures.ts @@ -9,7 +9,7 @@ export type AuthFixture = { export const test = base.extend({ // Override the page fixture to start the app automatically page: async ({ page }, use) => { - page.goto("/"); + await page.goto("/"); use(page); }, auth: async ({ page }, use) => {