(device: DeviceInfo)
| 56 | } |
| 57 | |
| 58 | async function getFinalSimulatorState(device: DeviceInfo): Promise<string | null> { |
| 59 | try { |
| 60 | return await getSimulatorState(device); |
| 61 | } catch { |
| 62 | return null; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | async function shutdownAndroidEmulator(device: DeviceInfo): Promise<DeviceTargetShutdownResult> { |
| 67 | const result = await runAndroidAdb(device, ['emu', 'kill'], { |
no test coverage detected
searching dependent graphs…