(device: DeviceInfo)
| 186 | const androidAdbProviderScope = new AsyncLocalStorage<AndroidAdbProviderScope>(); |
| 187 | |
| 188 | export function createDeviceAdbExecutor(device: DeviceInfo): AndroidAdbExecutor { |
| 189 | return createSerialAdbExecutor(device.id); |
| 190 | } |
| 191 | |
| 192 | function createSerialAdbExecutor(serial: string): AndroidAdbExecutor { |
| 193 | return async (args, options) => |
no test coverage detected