From c3c94b26e921d222717d40a872426550f627e811 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 22 Jan 2024 15:32:56 +0100 Subject: [PATCH] chore(e2e test): fix url --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index ef95b5836..9fe47e89d 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -13,7 +13,7 @@ dotenv.config({ path: "./tests/test.env" }); const useDefaultBaseUrl = ["", undefined].includes(process.env.E2E_BASE_URL); const baseURL = useDefaultBaseUrl - ? "http://127.0.0.1:3000" + ? "http://localhost:3000/" : process.env.E2E_BASE_URL; /** @@ -73,7 +73,7 @@ export default defineConfig({ }, { command: "npm run dev", - url: "http://127.0.0.1:3000", + url: "http://localhost:3000/", reuseExistingServer: !process.env.CI, }, ],