Skip to content

Commit 78598a0

Browse files
committed
Make ADB root-setup interception more reliable
1 parent c59ff2d commit 78598a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interceptors/android/adb-commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const getConnectedDevices = batchCalls(async (adbClient: adb.AdbClient) =
7878
});
7979

8080
async function waitUntilAvailable(adbClient: adb.AdbClient, deviceId: string, tries: number) {
81-
delay(50);
81+
delay(200);
8282

8383
while (tries > 0 && !(await getConnectedDevices(adbClient)).includes(deviceId)) {
8484
tries = tries - 1;

0 commit comments

Comments
 (0)