Move playwrite stuff to utils folder

This commit is contained in:
HarelM
2026-07-09 13:33:29 +03:00
parent c00395ee11
commit fb00dea285
14 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ const baseURL = process.env.E2E_BASE_URL ?? "http://localhost:8888/";
export default defineConfig({
testDir: "./e2e",
testMatch: "**/*.spec.ts",
globalSetup: "./e2e/global-setup.ts",
globalTeardown: "./e2e/global-teardown.ts",
globalSetup: "./e2e/e2e-setup.ts",
globalTeardown: "./e2e/e2e-teardown.ts",
fullyParallel: true,
forbidOnly: isCI,
retries: isCI ? 2 : 0,