From 32a3e7f69481d80091830cbf0508372c9d45645d Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Sat, 4 Jan 2025 20:47:29 +0100 Subject: [PATCH] Adjust playwright config options back to localhost --- web-app/playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-app/playwright.config.ts b/web-app/playwright.config.ts index b058fc4..1204801 100644 --- a/web-app/playwright.config.ts +++ b/web-app/playwright.config.ts @@ -3,10 +3,10 @@ import { type PlaywrightTestConfig, devices } from "@playwright/test"; const config: PlaywrightTestConfig = { webServer: { command: "npm run build && npm run preview", - url: "http://127.0.0.1:4173" + url: "http://localhost:4173" }, use: { - baseURL: "http://127.0.0.1:4173", + baseURL: "http://localhost:4173", video: "retain-on-failure" }, testDir: "./tests",