We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c59ff2d commit 78598a0Copy full SHA for 78598a0
src/interceptors/android/adb-commands.ts
@@ -78,7 +78,7 @@ export const getConnectedDevices = batchCalls(async (adbClient: adb.AdbClient) =
78
});
79
80
async function waitUntilAvailable(adbClient: adb.AdbClient, deviceId: string, tries: number) {
81
- delay(50);
+ delay(200);
82
83
while (tries > 0 && !(await getConnectedDevices(adbClient)).includes(deviceId)) {
84
tries = tries - 1;
0 commit comments