Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A Demulator-test.ts6 import { listAvdsAsync, startDeviceAsync } from '../emulator';
14 startDeviceAsync: jest.fn(async () => {}),
37 describe(startDeviceAsync, () => {
47 await expect(startDeviceAsync({ name: 'foo' }, { timeout: 5 })).rejects.toThrow(
69 startDeviceAsync({ name: 'foo' }, { timeout: 500, interval: 10 })
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts6 import { startDeviceAsync } from './emulator';
67 this.device = await startDeviceAsync(this.device);
H A Demulator.ts42 export async function startDeviceAsync( function