From acd40d036ef76494c949fdc0557067f254e3058b Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Thu, 6 Feb 2025 07:58:42 +0100 Subject: [PATCH] fix local e2e by adding inspector-port --- examples/common/config-e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/config-e2e.ts b/examples/common/config-e2e.ts index 5347c5e6..5ddb9d44 100644 --- a/examples/common/config-e2e.ts +++ b/examples/common/config-e2e.ts @@ -27,7 +27,7 @@ export function configurePlaywright( timeout = 100_000; } else { timeout = 500_000; - command = `pnpm preview --port ${port}`; + command = `pnpm preview --port ${port} --inspector-port ${inspectorPort}`; } } else { timeout = 100_000;