Home
last modified time | relevance | path

Searched refs:launchBrowserAsync (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/start/server/middleware/inspector/__tests__/
H A DJsInspector-test.ts9 import { launchBrowserAsync } from '../LaunchBrowser';
21 const mockLaunchBrowserAsync = launchBrowserAsync as jest.MockedFunction<
22 typeof launchBrowserAsync
/expo/packages/@expo/cli/src/start/server/middleware/inspector/
H A DJsInspector.ts3 import { launchBrowserAsync, type LaunchBrowserInstance } from './LaunchBrowser';
31 openingBrowserInstance = await launchBrowserAsync(url);
H A DLaunchBrowser.ts15 export async function launchBrowserAsync(url: string): Promise<LaunchBrowserInstance> { function