Skip to content

Commit 2c24b12

Browse files
test(federated-css): always reuse existing webServer to prevent repeated start/stop cycles
1 parent 64a1d78 commit 2c24b12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

federated-css/playwright.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineConfig, devices } from '@playwright/test';
22

3-
const reuseExisting = !process.env.CI;
3+
// Always reuse existing servers to avoid repeated start/stop cycles during runs
4+
const reuseExisting = true;
45

56
export default defineConfig({
67
testDir: './e2e',

0 commit comments

Comments
 (0)