Searched refs:isAppInstalledAsync (Results 1 – 8 of 8) sorted by relevance
42 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 …]
202 isAppInstalledAsync: jest.fn(async () => isAppInstalled),
25 abstract isAppInstalledAsync(applicationId: string): Promise<boolean>;
86 if (await deviceManager.isAppInstalledAsync(applicationId)) {145 if (!(await deviceManager.isAppInstalledAsync(applicationId))) {
86 let shouldInstall = !(await deviceManager.isAppInstalledAsync(this.appId));
92 const isInstalled = await this.isAppInstalledAsync(appId);130 async isAppInstalledAsync(applicationId: string) { method in AndroidDeviceManager
162 if (await this.isAppInstalledAsync(applicationId)) {175 async isAppInstalledAsync(appId: string) { method in AppleDeviceManager
23 manager.isAppInstalledAsync = jest.fn(() => Promise.resolve(true));