aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/playwright.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/playwright.config.ts')
-rw-r--r--frontend/playwright.config.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts
deleted file mode 100644
index 26e0b59..0000000
--- a/frontend/playwright.config.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { defineConfig, devices } from '@playwright/test';
-
-export default defineConfig({
- testDir: './tests',
- fullyParallel: true,
- forbidOnly: !!process.env.CI,
- retries: process.env.CI ? 2 : 0,
- workers: 1, // Avoid VM crash
- reporter: 'html',
- use: {
- baseURL: 'http://localhost:5173', // Vite dev server
- trace: 'on-first-retry',
- },
- projects: [
- {
- name: 'chromium',
- use: { ...devices['Desktop Chrome'] },
- },
- ],
- webServer: {
- command: 'npm run dev',
- url: 'http://localhost:5173',
- reuseExistingServer: !process.env.CI,
- },
-});