Searched refs:activateWindowAsync (Results 1 – 8 of 8) sorted by relevance
6 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' });
40 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);
4 import { activateWindowAsync } from './activateWindow';158 async activateWindowAsync() { method in AndroidDeviceManager160 await activateWindowAsync(this.device);
21 export async function activateWindowAsync(device: Pick<Device, 'type' | 'pid'>): Promise<boolean> { function
117 deviceManager.activateWindowAsync();165 await deviceManager.activateWindowAsync();209 await deviceManager.activateWindowAsync();
29 abstract activateWindowAsync(): Promise<void>;
61 device.activateWindowAsync = jest.fn();64 expect(device.activateWindowAsync).toBeCalled();
116 await this.activateWindowAsync();205 async activateWindowAsync() { method in AppleDeviceManager