Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/start/platforms/ios/__tests__/
H A DAppleDeviceManager-test.ts4 import { Device, getInfoPlistValueAsync, openAppIdAsync, openUrlAsync } from '../simctl';
7 openAppIdAsync: jest.fn(),
38 asMock(openAppIdAsync).mockImplementationOnce(() => {
45 asMock(openAppIdAsync).mockImplementationOnce(() => {
62 asMock(openAppIdAsync).mockResolvedValueOnce({ status: 0 } as any);
68 asMock(openAppIdAsync).mockImplementationOnce(() => {
87 expect(openAppIdAsync).not.toBeCalled();
H A DApplePlatformManager-test.ts85 expect(SimControl.openAppIdAsync).toBeCalledWith(
/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DAndroidDeviceManager-test.ts9 openAppIdAsync,
19 openAppIdAsync: jest.fn(),
63 expect(openAppIdAsync).toBeCalledWith({ pid: '123' }, { applicationId: 'host.exp.exponent' });
69 expect(openAppIdAsync).not.toBeCalled();
H A Dadb-test.ts14 openAppIdAsync,
104 describe(openAppIdAsync, () => {
110 openAppIdAsync(device, {
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts149 await AndroidDebugBridge.openAppIdAsync(
H A Dadb.ts121 export async function openAppIdAsync( function
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleDeviceManager.ts112 const result = await SimControl.openAppIdAsync(this.device, {
H A Dsimctl.ts135 export async function openAppIdAsync( function