Home
last modified time | relevance | path

Searched refs:_getManifestResponseAsync (Results 1 – 5 of 5) sorted by relevance

/expo/packages/@expo/cli/src/start/server/middleware/__tests__/
H A DExpoGoManifestHandlerMiddleware-test.ts234 const results = await middleware._getManifestResponseAsync({
305 const results = await middleware._getManifestResponseAsync({
344 const results = await middleware._getManifestResponseAsync({
407 const results = await middleware._getManifestResponseAsync({
448 await middlewareOnline._getManifestResponseAsync({
460 const results = await middleware._getManifestResponseAsync({
503 const results = await middleware._getManifestResponseAsync({
547 const results = await middleware._getManifestResponseAsync({
H A DManifestMiddleware-test.ts47 public _getManifestResponseAsync( method in MockManifestMiddleware
272 middleware._getManifestResponseAsync = jest.fn(async () => ({
304 expect(middleware._getManifestResponseAsync).toBeCalled();
321 middleware._getManifestResponseAsync = jest.fn(async () => {
351 expect(middleware._getManifestResponseAsync).toBeCalled();
/expo/packages/@expo/cli/src/start/server/middleware/__tests__/__snapshots__/
H A DExpoGoManifestHandlerMiddleware-test.ts.snap3 exports[`_getManifestResponseAsync returns a code signed manifest with expo-root chain when request…
51 exports[`_getManifestResponseAsync returns a code signed manifest with expo-root chain when request…
/expo/packages/@expo/cli/src/start/server/middleware/
H A DManifestMiddleware.ts306 public abstract _getManifestResponseAsync(options: TManifestRequestInfo): Promise<{
427 const { body, version, headers } = await this._getManifestResponseAsync(options);
H A DExpoGoManifestHandlerMiddleware.ts97 public async _getManifestResponseAsync(requestOptions: ExpoGoManifestRequestInfo): Promise<{ method in ExpoGoManifestHandlerMiddleware