Home
last modified time | relevance | path

Searched refs:promptDeviceAsync (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/run/ios/options/__tests__/
H A DresolveDevice-test.ts3 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();
/expo/packages/@expo/cli/src/run/ios/options/
H A DresolveDevice.ts1 import { promptDeviceAsync } from './promptDevice';
66 await promptDeviceAsync(devices)
H A DpromptDevice.ts32 export async function promptDeviceAsync(devices: AnyDevice[]): Promise<AnyDevice> { function