Skip to content

Commit

Permalink
fix(playwright.config): webServer config
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jul 23, 2024
1 parent aa5c472 commit dd5579a
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 @@ -64,8 +64,8 @@ export default defineConfig({
],

webServer: {
command: "npm run start",
command: process.env.CI ? "" : "npm run start",
url: baseURL,
reuseExistingServer: !process.env.CI,
reuseExistingServer: true,
},
})

0 comments on commit dd5579a

Please sign in to comment.