Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/start/platforms/ios/__tests__/
H A DpromptAppleDevice-test.ts2 import { getBestSimulatorAsync } from '../getBestSimulator';
9 asMock(getBestSimulatorAsync).mockResolvedValueOnce('should-be-first');
21 asMock(getBestSimulatorAsync).mockResolvedValueOnce(null);
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DpromptAppleDevice.ts3 import { getBestSimulatorAsync } from './getBestSimulator';
17 const defaultId = await getBestSimulatorAsync({ osType });
H A DgetBestSimulator.ts99 export async function getBestSimulatorAsync({ osType }: DeviceContext): Promise<string | null> { function