Skip to content

Commit

Permalink
fix playwright port
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Jul 12, 2024
1 parent d35bf84 commit 586b986
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 @@ -11,7 +11,7 @@ export default {
fullyParallel: false,
reporter: process.env.CI ? "github" : "html",
use: {
baseURL: "http://localhost:3000",
baseURL: "http://localhost:5173",
trace: "on",
},
projects: [
Expand All @@ -27,6 +27,6 @@ export default {
webServer: {
command: "pnpm dev",
reuseExistingServer: true,
port: 5137,
port: 5173,
},
} satisfies PlaywrightTestConfig;

0 comments on commit 586b986

Please sign in to comment.