Skip to content

Commit fb36552

Browse files
fix: increase adb timeout
1 parent 1ae1aa1 commit fb36552

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.maestro/scripts/setup-android-emulator.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ fi
7777
emulator "${EMULATOR_ARGS[@]}" > /dev/null 2>&1 &
7878

7979
echo "Waiting for emulator ($SERIAL) to connect to ADB..."
80-
if ! timeout 120 adb -s "$SERIAL" wait-for-device; then
81-
echo "Error: Emulator did not connect to ADB after 120s."
80+
if ! timeout 300 adb -s "$SERIAL" wait-for-device; then
81+
echo "Error: Emulator did not connect to ADB after 300s."
8282
exit 1
8383
fi
8484

0 commit comments

Comments
 (0)