Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A Dadb-test.ts5 getAdbNameForDeviceIdAsync,
117 describe(getAdbNameForDeviceIdAsync, () => {
121 expect(await getAdbNameForDeviceIdAsync(asDevice({ pid: 'emulator-5554' }))).toBe(
131 getAdbNameForDeviceIdAsync(asDevice({ pid: 'emulator-5554' }))
/expo/packages/@expo/cli/src/start/platforms/android/
H A Dadb.ts263 name = (await getAdbNameForDeviceIdAsync({ pid })) ?? '';
283 export async function getAdbNameForDeviceIdAsync(device: DeviceContext): Promise<string | null> { function