Skip to content

Commit a1ade0b

Browse files
committed
Fix inconsistent reuseExistingServer in tanstack web server config
Set reuseExistingServer to false for tanstack to match nextjs and react-router configurations, preventing stale in-memory test data from causing flaky test failures.
1 parent 21af4b4 commit a1ade0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/playwright.codegen.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const allWebServers = [
7474
config: {
7575
command: "pnpm -F tanstack run start:e2e",
7676
port: 3007,
77-
reuseExistingServer: true,
77+
reuseExistingServer: false,
7878
timeout: 300_000,
7979
stdout: "pipe" as const,
8080
stderr: "pipe" as const,

0 commit comments

Comments
 (0)