Home
last modified time | relevance | path

Searched refs:getRedirectUrl (Results 1 – 17 of 17) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/__tests__/
H A DPlatformManager-test.ts32 const getRedirectUrl = jest.fn((): null | string => null); constant
52 getRedirectUrl,
71 getRedirectUrl,
108 const { manager, getRedirectUrl, getExpoGoUrl, device, resolveDeviceAsync } = createManager({ constant
113 getRedirectUrl.mockImplementationOnce(() => url);
138 const { manager, getRedirectUrl, getExpoGoUrl, device, resolveDeviceAsync } = createManager({ constant
143 getRedirectUrl.mockImplementationOnce(() => 'http://localhost:8081/_expo/loading');
150 expect(getRedirectUrl).toHaveBeenCalledTimes(1);
170 const { manager, getRedirectUrl, getExpoGoUrl, device, resolveDeviceAsync } = createManager({ constant
175 getRedirectUrl.mockImplementationOnce(() => 'http://localhost:8081/_expo/loading');
[all …]
/expo/packages/expo-auth-session/src/__tests__/
H A DAuthSession-test.ios.ts31 const { getRedirectUrl } = require('../AuthSession'); constant
32 expect(getRedirectUrl()).toEqual('https://auth.expo.io/@example/abc');
H A DSessionUrlProvider-test.ts102 expect(managedSessionUrlProvider.getRedirectUrl({})).toEqual(
/expo/packages/expo-auth-session/build/
H A DAuthSession.js36 export function getRedirectUrl(path) { function
37 return sessionUrlProvider.getRedirectUrl({ urlPath: path });
H A DSessionUrlProvider.d.ts7 getRedirectUrl(options: {
H A DSessionUrlProvider.js30 return `${this.getRedirectUrl({ projectNameForProxy })}/start?${queryString}`;
32 getRedirectUrl(options) { method in SessionUrlProvider
H A DAuthSession.d.ts29 export declare function getRedirectUrl(path?: string): string;
H A DAuthSession.js.map1getRedirectUrl('redirect');\n *\n * // Managed: https://auth.expo.io/@your-username/your-app-slug/…
H A DSessionUrlProvider.js.map1 …\n });\n\n return `${this.getRedirectUrl({ projectNameForProxy })}/start?${queryString}`;\n …
/expo/packages/expo-auth-session/src/
H A DAuthSession.ts58 export function getRedirectUrl(path?: string): string { function
59 return sessionUrlProvider.getRedirectUrl({ urlPath: path });
H A DSessionUrlProvider.ts38 return `${this.getRedirectUrl({ projectNameForProxy })}/start?${queryString}`;
41 getRedirectUrl(options: { projectNameForProxy?: string; urlPath?: string }): string { method in SessionUrlProvider
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DApplePlatformManager.ts18 getRedirectUrl: () => string | null;
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidPlatformManager.ts22 getRedirectUrl: () => string | null;
/expo/packages/@expo/cli/src/start/platforms/
H A DPlatformManager.ts44 getRedirectUrl: () => string | null;
68 const redirectUrl = this.props.getRedirectUrl();
/expo/packages/@expo/cli/src/start/server/
H A DBundlerDevServer.ts437 public getRedirectUrl(platform: keyof typeof PLATFORM_MANAGERS | null = null): string | null {
472 getRedirectUrl: this.getRedirectUrl.bind(this, platform),
/expo/packages/@expo/cli/src/start/server/__tests__/
H A DBundlerDevServer-test.ts276 expect(server.getRedirectUrl('emulator')).toBe(
279 expect(server.getRedirectUrl('simulator')).toBe(
282 expect(server.getRedirectUrl(null)).toBe('http://100.100.1.100:3000/_expo/loading');
/expo/packages/@expo/cli/src/start/interface/
H A DinteractiveActions.ts34 const interstitialPageUrl = devServer.getRedirectUrl();