(device: DeviceInfo)
| 637 | } |
| 638 | |
| 639 | export async function openAndroidDevice(device: DeviceInfo): Promise<void> { |
| 640 | if (!device.booted) { |
| 641 | await waitForAndroidBoot(device.id); |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | export async function closeAndroidApp(device: DeviceInfo, app: string): Promise<void> { |
| 646 | const trimmed = app.trim(); |
no test coverage detected