( device: DeviceInfo, args: string[], options?: AndroidAdbExecutorOptions, )
| 8 | export { sleep } from '../../utils/timeouts.ts'; |
| 9 | |
| 10 | export async function runAndroidAdb( |
| 11 | device: DeviceInfo, |
| 12 | args: string[], |
| 13 | options?: AndroidAdbExecutorOptions, |
| 14 | ): Promise<AndroidAdbExecutorResult> { |
| 15 | return await resolveAndroidAdbExecutor(device)(args, options); |
| 16 | } |
| 17 | |
| 18 | export function androidDeviceForSerial(deviceId: string): DeviceInfo { |
| 19 | return { |
no test coverage detected
searching dependent graphs…