Skip to content

Commit 8e5f286

Browse files
committed
test(playwright): change default port to 3000
1 parent b6d6644 commit 8e5f286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require("dotenv").config({ path: path.resolve(process.cwd(), ".env.test.local")
55

66
const baseURL = new URL(process.env.BASE_URL as string);
77
baseURL.pathname = process.env.BASE_PATH ?? "/";
8-
const PORT = process.env.TEST_PORT ?? "3001";
8+
const PORT = process.env.TEST_PORT ?? "3000";
99
baseURL.port = PORT;
1010

1111
export default defineConfig({

0 commit comments

Comments
 (0)