Home
last modified time | relevance | path

Searched refs:launchApplicationIdAsync (Results 1 – 2 of 2) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/ios/__tests__/
H A DAppleDeviceManager-test.ts41 await expect(device.launchApplicationIdAsync('host.exp.foobar')).rejects.toThrow(/run:ios/);
48 await expect(device.launchApplicationIdAsync('host.exp.Exponent')).rejects.toThrow(
63 await device.launchApplicationIdAsync('host.exp.Exponent');
71 await expect(device.launchApplicationIdAsync).rejects.toThrow(/\.\.\./);
95 device.launchApplicationIdAsync = jest.fn(async () => {});
97 expect(device.launchApplicationIdAsync).toHaveBeenCalledWith('@foobar');
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleDeviceManager.ts110 async launchApplicationIdAsync(appId: string) { method in AppleDeviceManager
184 return await this.launchApplicationIdAsync(url);