Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccarthyIrl committed Mar 9, 2024
1 parent cce0462 commit d79d92d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/startEmulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ nohup "$ANDROID_HOME"/emulator/emulator -avd testRunnner \

# Wait for the emulator to fully boot
tries=0
while [ $tries -lt 10 ]; do
while [ $tries -lt 20 ]; do
if $ADB devices | grep -q emulator; then
break
fi
echo "Waiting for emulator to be detected..."
sleep 5
sleep 10
tries=$((tries + 1))
done

Expand Down

0 comments on commit d79d92d

Please sign in to comment.