()
| 40 | } |
| 41 | |
| 42 | export async function getConnectedAndroidDevices(): Promise<string[]> { |
| 43 | const commandListDevices = 'adb devices'; |
| 44 | const { stdout: devicesString } = await runCliCommand(commandListDevices, undefined, true); |
| 45 | const androidDevices = parseAndroidDevices(devicesString); |
| 46 | |
| 47 | return androidDevices; |
| 48 | } |
| 49 | |
| 50 | export async function getConnectedIOSDevices(): Promise<string[]> { |
| 51 | // eslint-disable-next-line unicorn/no-useless-promise-resolve-reject |
no test coverage detected