Skip to content

Commit

Permalink
fix for playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
jgentes committed Dec 13, 2023
1 parent 3d26be1 commit 3f68215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:3000',
baseURL: 'http://localhost:8788',

// Capture a screenshot when a test fails
screenshot: 'only-on-failure',
Expand Down Expand Up @@ -75,7 +75,7 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run dev',
command: 'yarn dev',
url: 'http://localhost:8788',
reuseExistingServer: !process.env.CI
}
Expand Down

0 comments on commit 3f68215

Please sign in to comment.