Searched refs:getAppVersionAsync (Results 1 – 11 of 11) sorted by relevance
33 await expect(device.getAppVersionAsync('foobar')).resolves.toBe('2.23.2');38 await expect(device.getAppVersionAsync('foobar')).resolves.toBe(null);
13 getAppVersionAsync: () => Promise<string>; property
30 async getAppVersionAsync(): Promise<string> { method in AndroidClientBuilder
28 async getAppVersionAsync(): Promise<string> { method in IosClientBuilder
22 await expect(device.getAppVersionAsync('host.exp.Exponent')).resolves.toBe('2.23.2');31 await expect(device.getAppVersionAsync('host.exp.Exponent')).resolves.toBe(null);
19 abstract getAppVersionAsync(applicationId: string): Promise<string | null>;
29 const installedVersion = await device.getAppVersionAsync(this.appId);
89 getAppVersionAsync: jest.fn(async () => null),99 getAppVersionAsync: jest.fn(async () => '1.0.0'),109 getAppVersionAsync: jest.fn(async () => '2.0.0'),
55 async getAppVersionAsync(applicationId: string): Promise<string | null> { method in AndroidDeviceManager
67 const appVersion = await builder.getAppVersionAsync();
99 async getAppVersionAsync(appId: string): Promise<string | null> { method in AppleDeviceManager