Skip to content

Commit

Permalink
fix: update astro's default port
Browse files Browse the repository at this point in the history
  • Loading branch information
vighnesh153 committed Sep 10, 2023
1 parent bc0b411 commit 1418f79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ export default defineConfig({
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
baseURL: 'http://localhost:3000',
baseURL: 'http://localhost:4321',
trace: 'on-first-retry',
},
/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run dev',
url: 'http://localhost:3000',
url: 'http://localhost:4321',
reuseExistingServer: !process.env.CI,
},

Expand Down

0 comments on commit 1418f79

Please sign in to comment.