From 62e9f0066300cc5edb0f4f70a5c13270aba0a22a Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Sat, 9 May 2026 13:50:00 -0700 Subject: [PATCH] fix(test): remove extra -- in pnpm dev command The extra -- was causing Vite flags to not be passed correctly Vite was not receiving --port and --strict-port properly Now flags are passed directly: pnpm dev --port 3050 --strict-port --- scripts/tests/run-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests/run-e2e.sh b/scripts/tests/run-e2e.sh index d40cf2e..3d1887a 100755 --- a/scripts/tests/run-e2e.sh +++ b/scripts/tests/run-e2e.sh @@ -87,7 +87,7 @@ echo "=========================================" # Start dev server in background SERVER_PID="" -pnpm dev -- --port $PORT --strict-port > "$REPORTS_DIR/server-$TIMESTAMP.log" 2>&1 & +pnpm dev --port $PORT --strict-port > "$REPORTS_DIR/server-$TIMESTAMP.log" 2>&1 & SERVER_PID=$! # Save PID for cleanup