From e03f208cfc0618eadd4bc3e689df9a33a39defe9 Mon Sep 17 00:00:00 2001 From: Abhay Fernandes Date: Mon, 2 Sep 2024 11:21:41 -0400 Subject: [PATCH] update playwright (again) --- playwright.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 6ca511a..7974bc3 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -25,7 +25,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:4321', + baseURL: 'http://localhost:4321', /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry', @@ -72,7 +72,7 @@ export default defineConfig({ /* Run your local dev server before starting the tests */ webServer: { command: 'npm run start', - url: "http://127.0.0.1:4321", - reuseExistingServer: !process.env.CI, + url: 'http://localhost:4321/', + timeout: 120 * 1000 }, });