Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/run/ios/__tests__/
H A DlaunchApp-test.ts6 import { getAppDeltaDirectory, installOnDeviceAsync } from '../appleDevice/installOnDeviceAsync';
33 getAppDeltaDirectory: jest.fn(() => '/mock_delta'),
73 expect(getAppDeltaDirectory).not.toBeCalled();
88 expect(getAppDeltaDirectory).not.toBeCalled();
106 expect(getAppDeltaDirectory).toBeCalled();
/expo/packages/@expo/cli/src/run/ios/
H A DlaunchApp.ts6 import { getAppDeltaDirectory, installOnDeviceAsync } from './appleDevice/installOnDeviceAsync';
25 appDeltaDirectory: getAppDeltaDirectory(appId),
/expo/packages/@expo/cli/src/run/ios/appleDevice/
H A DinstallOnDeviceAsync.ts14 export function getAppDeltaDirectory(bundleId: string): string { function