From afe4038778d9456a080b06cbe469e7a674d5a7f6 Mon Sep 17 00:00:00 2001 From: Zhi Date: Sat, 14 Mar 2026 07:41:45 +0000 Subject: [PATCH] Remove webServer config - services started via docker-compose --- playwright.config.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index b07ae00..216fee0 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -1,7 +1,6 @@ import { defineConfig, devices } from '@playwright/test'; const baseURL = process.env.FRONTEND_URL || 'http://frontend:3000'; -const backendURL = process.env.BACKEND_URL || 'http://backend:8000'; export default defineConfig({ testDir: './tests', @@ -20,9 +19,5 @@ export default defineConfig({ use: { ...devices['Desktop Chrome'] }, }, ], - webServer: { - command: 'npm run dev', - url: baseURL, - reuseExistingServer: !process.env.CI, - }, + // Don't start webServer - services are started via docker-compose });