Home
last modified time | relevance | path

Searched refs:isAppInstalledAsync (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/__tests__/
H A DPlatformManager-test.ts42 isAppInstalledAsync: jest.fn(async () => isAppInstalled),
94 expect(device.isAppInstalledAsync).toHaveBeenCalledTimes(0);
123 expect(device.isAppInstalledAsync).toHaveBeenCalledTimes(1);
124 expect(device.isAppInstalledAsync).toHaveBeenNthCalledWith(1, 'dev.bacon.app');
154 expect(device.isAppInstalledAsync).toHaveBeenCalledTimes(1);
155 expect(device.isAppInstalledAsync).toHaveBeenNthCalledWith(1, 'dev.bacon.app');
238 expect(device.isAppInstalledAsync).toHaveBeenCalledTimes(1);
239 expect(device.isAppInstalledAsync).toHaveBeenNthCalledWith(1, 'dev.bacon.app');
268 expect(device.isAppInstalledAsync).toHaveBeenCalledTimes(1);
269 expect(device.isAppInstalledAsync).toHaveBeenNthCalledWith(1, 'dev.bacon.app');
[all …]
H A DExpoGoInstaller-test.ts202 isAppInstalledAsync: jest.fn(async () => isAppInstalled),
/expo/packages/@expo/cli/src/start/platforms/
H A DDeviceManager.ts25 abstract isAppInstalledAsync(applicationId: string): Promise<boolean>;
H A DPlatformManager.ts86 if (await deviceManager.isAppInstalledAsync(applicationId)) {
145 if (!(await deviceManager.isAppInstalledAsync(applicationId))) {
H A DExpoGoInstaller.ts86 let shouldInstall = !(await deviceManager.isAppInstalledAsync(this.appId));
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts92 const isInstalled = await this.isAppInstalledAsync(appId);
130 async isAppInstalledAsync(applicationId: string) { method in AndroidDeviceManager
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleDeviceManager.ts162 if (await this.isAppInstalledAsync(applicationId)) {
175 async isAppInstalledAsync(appId: string) { method in AppleDeviceManager
/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DAndroidPlatformManager-test.ts23 manager.isAppInstalledAsync = jest.fn(() => Promise.resolve(true));