Skip to content

Commit

Permalink
update playwright (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhay Fernandes committed Sep 2, 2024
1 parent 38c4341 commit e03f208
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
},
});

0 comments on commit e03f208

Please sign in to comment.