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:
parent
2a36bc2de3
commit
62e9f00663
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user