Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dockerfiles/arm-local/setup-test-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,9 @@ chmod +x /usr/local/bin/install-ssh

cat > /usr/local/bin/show-report <<EOF
#!/bin/bash
echo "Opening test report at http://localhost:9323 ..."
cd $REPO_DIR && npx playwright show-report --host 0.0.0.0
echo "Serving test report at http://localhost:9323"
echo "(Use localhost, not 0.0.0.0 — trace viewer requires localhost for service workers)"
cd $REPO_DIR && npx playwright show-report --host 0.0.0.0 2>&1 | grep -v "Serving HTML report"
EOF
chmod +x /usr/local/bin/show-report

Expand Down