Home
last modified time | relevance | path

Searched refs:getRuntimeVersionAsync (Results 1 – 9 of 9) sorted by relevance

/expo/packages/@expo/config-plugins/src/utils/__tests__/
H A DUpdates-test.ts7 getRuntimeVersionAsync,
181 describe(getRuntimeVersionAsync, () => {
184 expect(await getRuntimeVersionAsync('', { runtimeVersion }, 'ios')).toBe(runtimeVersion);
188 expect(await getRuntimeVersionAsync('', { ios: { runtimeVersion } }, 'ios')).toBe(
196 await getRuntimeVersionAsync(
207 await getRuntimeVersionAsync(
215 expect(await getRuntimeVersionAsync('', {}, 'ios')).toEqual(null);
218 await expect(getRuntimeVersionAsync('', { runtimeVersion: 1 } as any, 'ios')).rejects.toThrow(
222 getRuntimeVersionAsync('', { runtimeVersion: { policy: 'unsupportedPlugin' } } as any, 'ios')
/expo/packages/@expo/config-plugins/build/utils/
H A DUpdates.d.ts10 …lableAsync(...[projectRoot, config, platform]: Parameters<typeof getRuntimeVersionAsync>): Promise…
11 export declare function getRuntimeVersionAsync(projectRoot: string, config: Pick<ExpoConfig, 'versi…
H A DUpdates.js9 exports.getRuntimeVersionAsync = getRuntimeVersionAsync;
117 return await getRuntimeVersionAsync(projectRoot, config, platform);
125 async function getRuntimeVersionAsync(projectRoot, config, platform) { function
H A DUpdates.js.map1getRuntimeVersionAsync","e","boolish","console","log","_config$platform$runt","_config$platform","…
/expo/packages/@expo/config-plugins/src/utils/
H A DUpdates.ts60 ...[projectRoot, config, platform]: Parameters<typeof getRuntimeVersionAsync>
63 return await getRuntimeVersionAsync(projectRoot, config, platform);
72 export async function getRuntimeVersionAsync( function
/expo/packages/@expo/cli/src/start/server/middleware/
H A DExpoGoManifestHandlerMiddleware.ts105 const runtimeVersion = await Updates.getRuntimeVersionAsync(
/expo/packages/@expo/config-plugins/
H A DCHANGELOG.md17 - Replace `getRuntimeVersion` / `getRuntimeVersionNullable` with `getRuntimeVersionAsync` / `getRun…
/expo/packages/@expo/cli/src/start/server/middleware/__tests__/
H A DExpoGoManifestHandlerMiddleware-test.ts61 getRuntimeVersionAsync: jest.fn(() => Promise.resolve('45.0.0')),
/expo/packages/@expo/cli/
H A DCHANGELOG.md55 - Forward the project root path to `getRuntimeVersionAsync` and `getRuntimeVersionNullableAsync`. (…