Searched refs:promptDeviceAsync (Results 1 – 3 of 3) sorted by relevance
3 import { promptDeviceAsync } from '../promptDevice';35 promptDeviceAsync: jest.fn(async (devices) => devices[0]),66 expect(promptDeviceAsync).toBeCalledWith([80 expect(promptDeviceAsync).not.toBeCalled();90 expect(promptDeviceAsync).not.toBeCalled();100 expect(promptDeviceAsync).not.toBeCalled();
1 import { promptDeviceAsync } from './promptDevice';66 await promptDeviceAsync(devices)
32 export async function promptDeviceAsync(devices: AnyDevice[]): Promise<AnyDevice> { function