Home
last modified time | relevance | path

Searched refs:launchAppAsync (Results 1 – 4 of 4) sorted by relevance

/expo/packages/@expo/cli/src/run/ios/__tests__/
H A DlaunchApp-test.ts7 import { launchAppAsync } from '../launchApp';
55 describe(launchAppAsync, () => {
61 await launchAppAsync('/path/to/app.ipa', getMockDevServerManager(), {
77 await launchAppAsync('/path/to/app.ipa', getMockDevServerManager(), {
94 await launchAppAsync('/path/to/app.ipa', getMockDevServerManager(), {
H A DrunIosAsync-test.ts7 import { launchAppAsync } from '../launchApp';
56 launchAppAsync: jest.fn(async () => {}),
101 expect(launchAppAsync).toBeCalledWith('/mock_binary', expect.anything(), {
143 expect(launchAppAsync).toBeCalledWith('/mock_binary', expect.anything(), {
/expo/packages/@expo/cli/src/run/ios/
H A DrunIosAsync.ts5 import { launchAppAsync } from './launchApp';
54 await launchAppAsync(binaryPath, manager, {
H A DlaunchApp.ts14 export async function launchAppAsync( function