Skip to content

Commit

Permalink
feat: Enable development server in Playwright config
Browse files Browse the repository at this point in the history
  • Loading branch information
NaokiHaba committed Dec 4, 2023
1 parent e162576 commit 90e794a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ export default defineConfig({
],

/* Run your local dev server before starting the tests */
// webServer: {
// command: 'npm run start',
// url: 'http://127.0.0.1:3000',
// reuseExistingServer: !process.env.CI,
// },
webServer: {
command: 'pnpm run dev',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI
}
});

0 comments on commit 90e794a

Please sign in to comment.