diff --git a/playwright.config.ts b/playwright.config.ts index dc2a1d92..3dfbdf76 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -11,7 +11,7 @@ export default defineConfig({ ["json", { outputFile: "test-results.json" }], ], use: { - baseURL: "http://127.0.0.1:5173", + baseURL: "http://localhost:5173", trace: "on-first-retry", screenshot: "only-on-failure", video: "retain-on-failure", @@ -24,7 +24,7 @@ export default defineConfig({ ], webServer: { command: "npm run dev", - url: "http://127.0.0.1:5173", + url: "http://localhost:5173", reuseExistingServer: !process.env.CI, timeout: 120 * 1000, stdout: "pipe",