Home
last modified time | relevance | path

Searched refs:startAsync (Results 1 – 25 of 42) sorted by relevance

12

/expo/packages/@expo/cli/src/start/server/__tests__/
H A DBundlerDevServer-test.ts113 await devServer.startAsync({ location: {} });
130 await devServer.startAsync({
167 const instance = await server.startAsync({
176 expect(ngrok?.startAsync).toHaveBeenCalled();
177 expect(devSession?.startAsync).toHaveBeenCalled();
269 await server.startAsync({
295 await server.startAsync({
306 await server.startAsync({
315 await server.startAsync({
351 await devServer.startAsync({ location: {} });
[all …]
H A DDevelopmentSession-test.ts40 await session.startAsync({
68 await session.startAsync({
101 await session.startAsync({
H A DAsyncNgrok-test.ts62 await ngrok.startAsync();
72 await ngrok.startAsync();
82 await expect(ngrok.startAsync()).rejects.toThrow(/adb/);
/expo/apps/test-suite/tests/
H A DRecording.js87 await recordingObject.startAsync();
153 await recordingObject.startAsync();
168 await recordingObject.startAsync();
210 await recordingObject.startAsync();
225 await recordingObject.startAsync();
239 await recordingObject.startAsync();
262 await recordingObject.startAsync();
300 await recordingObject.startAsync();
356 await recordingObject.startAsync();
370 await recordingObject.startAsync();
[all …]
/expo/packages/@expo/cli/src/run/__tests__/
H A DstartBundler-test.ts8 startAsync: jest.fn(),
40 expect(manager.startAsync).toHaveBeenCalledWith([
60 expect(manager.startAsync).toHaveBeenCalledWith([
/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DADBServer-test.ts77 await expect(server.startAsync()).resolves.toBe(true);
85 await expect(server.startAsync()).resolves.toBe(false);
98 server.startAsync = jest.fn();
103 expect(server.startAsync).toBeCalledTimes(1);
113 server.startAsync = jest.fn();
118 expect(server.startAsync).toBeCalledTimes(1);
/expo/apps/bare-expo/e2e/setup/
H A DsetupSockets.js3 import { startAsync, send } from '../../relapse/server';
25 stopAsync = await startAsync({
/expo/packages/@expo/cli/src/start/
H A Dindex.ts93 const { startAsync } = await import('./startAsync.js'); constant
94 return startAsync(projectRoot, options, { webOnly: false }).catch(logCmdError);
H A DstartAsync.ts64 export async function startAsync( function
93 await profile(devServerManager.startAsync.bind(devServerManager))(startOptions);
/expo/packages/@expo/cli/src/start/platforms/android/
H A DADBServer.ts37 async startAsync(): Promise<boolean> { method in ADBServer
81 await this.startAsync();
93 await this.startAsync();
/expo/packages/@expo/cli/src/start/server/
H A DDevelopmentSession.ts41 public async startAsync({ method in DevelopmentSession
80 this.timeout = setTimeout(() => this.startAsync({ exp, runtime }), UPDATE_FREQUENCY);
H A DDevServerManager.ts125 return this.startAsync([
157 async startAsync(startOptions: MultiBundlerStartOptions): Promise<ExpoConfig> { method in DevServerManager
174 await server.startAsync(options ?? this.options);
H A DBundlerDevServer.ts137 public async startAsync(options: BundlerStartOptions): Promise<DevServerInstance> {
233 await this.ngrok.startAsync();
262 await this.devSession.startAsync({
/expo/packages/@expo/cli/src/start/server/__mocks__/
H A DDevelopmentSession.ts7 startAsync = jest.fn(async () => ({})); property in DevelopmentSession
H A DAsyncNgrok.ts6 startAsync = jest.fn(async () => { property in AsyncNgrok
/expo/apps/bare-expo/
H A DApp.tsx4 import { createProxy, startAsync, addListener } from './relapse/client';
50 startAsync().then((_stop) => (stop = _stop));
/expo/packages/@expo/cli/src/start/platforms/
H A DDeviceManager.ts17 abstract startAsync(): Promise<IDevice>; method in DeviceManager
/expo/packages/@expo/cli/src/run/
H A DstartBundler.ts33 await devServerManager.startAsync([
/expo/packages/@expo/cli/src/run/android/__tests__/
H A DrunAndroidAsync-test.ts34 startAsync: jest.fn(),
/expo/apps/bare-expo/relapse/
H A Dclient.js13 export async function startAsync() { function
H A Dserver.js12 export async function startAsync(startOptions = {}) { function
/expo/packages/expo-av/build/Audio/
H A DRecording.js171 const status = await recording.startAsync();
301 async startAsync() { method in Recording
H A DRecording.d.ts157 startAsync(): Promise<RecordingStatus>;
/expo/packages/@expo/cli/src/run/ios/__tests__/
H A DlaunchApp-test.ts48 startAsync: jest.fn(),
/expo/packages/expo-av/src/Audio/
H A DRecording.ts210 const status = await recording.startAsync();
370 async startAsync(): Promise<RecordingStatus> { method in Recording

12