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
This commit is contained in:
Saravana Achu Mac 2026-05-09 13:50:00 -07:00
parent 2a36bc2de3
commit 62e9f00663

View File

@ -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