Home
last modified time | relevance | path

Searched refs:getDevicesAsync (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/ios/__tests__/
H A Dsimctl-test.ts6 getDevicesAsync,
29 describe(getDevicesAsync, () => {
35 await expect(getDevicesAsync()).rejects.toThrowError();
45 const devices = await getDevicesAsync();
/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DgetDevices-test.ts5 import { getDevicesAsync } from '../getDevices';
17 await expect(getDevicesAsync()).rejects.toThrowError(CommandError);
/expo/packages/@expo/cli/src/run/ios/options/
H A DresolveDevice.ts19 async function getDevicesAsync({ osType }: { osType?: OSType } = {}): Promise<AnyDevice[]> { function
23 await profile(SimControl.getDevicesAsync)(),
59 const devices: AnyDevice[] = await getDevicesAsync({
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts7 import { getDevicesAsync } from './getDevices';
20 const devices = await getDevicesAsync();
41 const devices = await getDevicesAsync();
H A DgetDevices.ts6 export async function getDevicesAsync(): Promise<Device[]> { function
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DgetBestSimulator.ts89 const simulators = await SimControl.getDevicesAsync();
H A Dsimctl.ts263 export async function getDevicesAsync(): Promise<Device[]> { function
/expo/packages/@expo/cli/src/run/ios/options/__tests__/
H A DresolveDevice-test.ts43 getDevicesAsync: jest.fn(() => [simulator, simulator]),