Home
last modified time | relevance | path

Searched refs:isClientOutdatedAsync (Results 1 – 2 of 2) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/__tests__/
H A DExpoGoInstaller-test.ts91 await expect(installer.isClientOutdatedAsync(deviceManager)).resolves.toBe(true);
101 await expect(installer.isClientOutdatedAsync(deviceManager)).resolves.toBe(true);
111 await expect(installer.isClientOutdatedAsync(deviceManager)).resolves.toBe(false);
130 installer.isClientOutdatedAsync = jest.fn(async () => true);
141 installer.isClientOutdatedAsync = jest.fn(async () => true);
154 installer.isClientOutdatedAsync = jest.fn(async () => true);
164 installer.isClientOutdatedAsync = jest.fn(async () => true);
176 installer.isClientOutdatedAsync = jest.fn(async () => false);
185 installer.isClientOutdatedAsync = jest.fn(async () => true);
/expo/packages/@expo/cli/src/start/platforms/
H A DExpoGoInstaller.ts28 async isClientOutdatedAsync(device: DeviceManager<IDevice>): Promise<boolean> { method in ExpoGoInstaller
58 if (await this.isClientOutdatedAsync(deviceManager)) {