From 09efbb5cd6076299b2a1111138ce6bcdfd4e5942 Mon Sep 17 00:00:00 2001 From: HarelM Date: Thu, 9 Jul 2026 13:40:45 +0300 Subject: [PATCH] Fix utils path --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 75fab414..a38daa8a 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -9,8 +9,8 @@ const baseURL = process.env.E2E_BASE_URL ?? "http://localhost:8888/"; export default defineConfig({ testDir: "./e2e", testMatch: "**/*.spec.ts", - globalSetup: "./e2e/e2e-setup.ts", - globalTeardown: "./e2e/e2e-teardown.ts", + globalSetup: "./e2e/utils/e2e-setup.ts", + globalTeardown: "./e2e/utils/e2e-teardown.ts", fullyParallel: true, forbidOnly: isCI, retries: isCI ? 2 : 0,