()
| 282 | } |
| 283 | |
| 284 | async function listAndroidDeviceEntries(): Promise<AndroidDeviceEntry[]> { |
| 285 | const result = await runCmd('adb', ['devices', '-l'], { |
| 286 | timeoutMs: ANDROID_BOOT_PROP_TIMEOUT_MS, |
| 287 | }); |
| 288 | return parseAndroidDeviceEntries(result.stdout); |
| 289 | } |
| 290 | |
| 291 | export function parseAndroidAvdList(rawOutput: string): string[] { |
| 292 | return rawOutput |
no test coverage detected