From 2be228758b41c06a9b42578f081f068aea3de457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AE=80=E9=9D=99=E5=87=A1?= <30424139+wtto00@users.noreply.github.com> Date: Fri, 22 Sep 2023 01:55:14 +0800 Subject: [PATCH] fix: waitForDevice util 5 minutes --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d2ccf63..b1d8dc5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -219,7 +219,7 @@ class Android { * @param emulatorId id of emulator */ async waitForDevice(emulatorId: string) { - await this.adb(emulatorId, 'wait-for-device'); + await this.adb(emulatorId, 'wait-for-device', 300000); } /**