From b14ed276cc5e9549fe6c7947ca481a1af0466754 Mon Sep 17 00:00:00 2001 From: hasan-py Date: Sat, 12 Oct 2024 22:30:42 +0600 Subject: [PATCH] baseURL format change --- client/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/playwright.config.ts b/client/playwright.config.ts index 0582a58..ba62bc5 100644 --- a/client/playwright.config.ts +++ b/client/playwright.config.ts @@ -26,7 +26,7 @@ export default defineConfig({ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ - baseURL: "http://127.0.0.1:5173", + baseURL: "http://localhost:5173/", /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: "on-first-retry", },