Skip to content

Commit

Permalink
Show app name in browserstack log
Browse files Browse the repository at this point in the history
  • Loading branch information
anhappdev committed Feb 26, 2025
1 parent 763689c commit 1f53529
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/scripts/browserstack-app-automate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,13 @@ check_build_status() {
# Display device status
if [[ "$status" != "running" ]]; then
echo "$response" | jq -r '
.devices[] |
"Device: " + .device +
", OS Version: " + .os_version +
", Duration: " + (.sessions[0].duration | tostring) + "s" +
", Status: " + (.sessions[0].status)
"App: " + .input_capabilities.app +
( .devices[] |
", Device: " + .device +
", OS Version: " + .os_version +
", Duration: " + (.sessions[0].duration | tostring) + "s" +
", Status: " + (.sessions[0].status)
)
'
fi

Expand Down

0 comments on commit 1f53529

Please sign in to comment.