Adjust playwright config options back to localhost

This commit is contained in:
thiloho
2025-01-04 20:47:29 +01:00
parent 4af15717f4
commit 32a3e7f694

View File

@@ -3,10 +3,10 @@ import { type PlaywrightTestConfig, devices } from "@playwright/test";
const config: PlaywrightTestConfig = { const config: PlaywrightTestConfig = {
webServer: { webServer: {
command: "npm run build && npm run preview", command: "npm run build && npm run preview",
url: "http://127.0.0.1:4173" url: "http://localhost:4173"
}, },
use: { use: {
baseURL: "http://127.0.0.1:4173", baseURL: "http://localhost:4173",
video: "retain-on-failure" video: "retain-on-failure"
}, },
testDir: "./tests", testDir: "./tests",