Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DactivateWindow-test.ts6 import { activateWindowAsync } from '../activateWindow';
22 await activateWindowAsync({ type: 'emulator', pid: 'emulator-5554' });
28 await activateWindowAsync({ type: 'device', pid: 'emulator-5554' });
35 await activateWindowAsync({ type: 'emulator', pid: 'emulator-5554' });
44 await activateWindowAsync({ type: 'emulator', pid: 'emulator-5554' });
/expo/packages/@expo/cli/src/start/platforms/__tests__/
H A DPlatformManager-test.ts40 activateWindowAsync: jest.fn(),
96 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
126 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
157 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
185 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
211 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
241 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
271 expect(device.activateWindowAsync).toHaveBeenCalledTimes(0);
304 expect(device.activateWindowAsync).toHaveBeenCalledTimes(1);
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts4 import { activateWindowAsync } from './activateWindow';
158 async activateWindowAsync() { method in AndroidDeviceManager
160 await activateWindowAsync(this.device);
H A DactivateWindow.ts21 export async function activateWindowAsync(device: Pick<Device, 'type' | 'pid'>): Promise<boolean> { function
/expo/packages/@expo/cli/src/start/platforms/
H A DPlatformManager.ts117 deviceManager.activateWindowAsync();
165 await deviceManager.activateWindowAsync();
209 await deviceManager.activateWindowAsync();
H A DDeviceManager.ts29 abstract activateWindowAsync(): Promise<void>;
/expo/packages/@expo/cli/src/start/platforms/ios/__tests__/
H A DAppleDeviceManager-test.ts61 device.activateWindowAsync = jest.fn();
64 expect(device.activateWindowAsync).toBeCalled();
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleDeviceManager.ts116 await this.activateWindowAsync();
205 async activateWindowAsync() { method in AppleDeviceManager