Home
last modified time | relevance | path

Searched refs:resolvePortAsync (Results 1 – 7 of 7) sorted by relevance

/expo/packages/@expo/cli/src/run/__tests__/
H A DresolveBundlerProps-test.ts3 import { resolvePortAsync } from '../../utils/port';
20 asMock(resolvePortAsync).mockResolvedValueOnce(null);
38 asMock(resolvePortAsync).mockResolvedValueOnce(19006);
/expo/packages/@expo/cli/src/run/
H A DresolveBundlerProps.ts3 import { resolvePortAsync } from '../utils/port';
31 ? await resolvePortAsync(projectRoot, { reuseExistingPort: true, defaultPort: options.port })
/expo/packages/@expo/cli/src/start/__tests__/
H A DresolveOptions-test.ts3 import { resolvePortAsync } from '../../utils/port';
8 resolvePortAsync: jest.fn(),
84 asMock(resolvePortAsync).mockImplementation(async (root, { defaultPort, fallbackPort }) => {
/expo/packages/@expo/cli/src/start/
H A DresolveOptions.ts5 import { resolvePortAsync } from '../utils/port';
152 const webpackPort = await resolvePortAsync(projectRoot, {
165 const metroPort = await resolvePortAsync(projectRoot, {
/expo/packages/@expo/cli/src/utils/__mocks__/
H A Dport.ts1 export const resolvePortAsync = jest.fn( constant
/expo/packages/@expo/cli/src/utils/
H A Dport.ts130 export async function resolvePortAsync( function
/expo/packages/@expo/cli/src/start/server/metro/
H A DMetroBundlerDevServer.ts72 async resolvePortAsync(options: Partial<BundlerStartOptions> = {}): Promise<number> { method in MetroBundlerDevServer
339 options.port = await this.resolvePortAsync(options);