Skip to content

Commit

Permalink
playwright coverage WIP(18)
Browse files Browse the repository at this point in the history
  • Loading branch information
davorinrusevljan committed Nov 12, 2024
1 parent 289e2ff commit af24c3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test-playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ jobs:
PID="${{ steps.fastagency-start.outputs.FAST_PID}}"
# Send SIGTERM to the program (graceful shutdown)
echo "killing the fastagency:" $PID
kill -s SIGINT $PID
ps -ef | grep $PID
kill -s SIGTERM $PID
wait_count=0
while ps -p "$PID" > /dev/null && ((wait_count < 5)); do
Expand Down

0 comments on commit af24c3a

Please sign in to comment.