Skip to content

Commit 04aac1d

Browse files
fix parallel e2e runs
1 parent 00b2208 commit 04aac1d

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

examples/api/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"build:worker": "builder",
1111
"dev:worker": "wrangler dev --port 8770",
1212
"preview:worker": "pnpm build:worker && pnpm dev:worker",
13-
"pree2e": "playwright install --with-deps",
1413
"e2e": "playwright test"
1514
},
1615
"dependencies": {

examples/create-next-app/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default defineConfig({
7474
/* Run your local dev server before starting the tests */
7575
webServer: {
7676
command: "pnpm preview:worker",
77-
url: "http://localhost:8770",
77+
url: "http://localhost:8771",
7878
reuseExistingServer: !process.env.CI,
7979
},
8080
});

examples/create-next-app/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"build:worker": "builder",
1111
"dev:worker": "wrangler dev --port 8770",
1212
"preview:worker": "pnpm build:worker && pnpm dev:worker",
13-
"pree2e": "playwright install --with-deps",
1413
"e2e": "playwright test -c e2e/playwright.config.ts"
1514
},
1615
"dependencies": {

0 commit comments

Comments
 (0)