| /expo/packages/@expo/cli/src/start/platforms/__tests__/ |
| H A D | PlatformManager-test.ts | 32 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 D | AuthSession-test.ios.ts | 31 const { getRedirectUrl } = require('../AuthSession'); constant 32 expect(getRedirectUrl()).toEqual('https://auth.expo.io/@example/abc');
|
| H A D | SessionUrlProvider-test.ts | 102 expect(managedSessionUrlProvider.getRedirectUrl({})).toEqual(
|
| /expo/packages/expo-auth-session/build/ |
| H A D | AuthSession.js | 36 export function getRedirectUrl(path) { function 37 return sessionUrlProvider.getRedirectUrl({ urlPath: path });
|
| H A D | SessionUrlProvider.d.ts | 7 getRedirectUrl(options: {
|
| H A D | SessionUrlProvider.js | 30 return `${this.getRedirectUrl({ projectNameForProxy })}/start?${queryString}`; 32 getRedirectUrl(options) { method in SessionUrlProvider
|
| H A D | AuthSession.d.ts | 29 export declare function getRedirectUrl(path?: string): string;
|
| H A D | AuthSession.js.map | 1 …getRedirectUrl('redirect');\n *\n * // Managed: https://auth.expo.io/@your-username/your-app-slug/…
|
| H A D | SessionUrlProvider.js.map | 1 …\n });\n\n return `${this.getRedirectUrl({ projectNameForProxy })}/start?${queryString}`;\n …
|
| /expo/packages/expo-auth-session/src/ |
| H A D | AuthSession.ts | 58 export function getRedirectUrl(path?: string): string { function 59 return sessionUrlProvider.getRedirectUrl({ urlPath: path });
|
| H A D | SessionUrlProvider.ts | 38 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 D | ApplePlatformManager.ts | 18 getRedirectUrl: () => string | null;
|
| /expo/packages/@expo/cli/src/start/platforms/android/ |
| H A D | AndroidPlatformManager.ts | 22 getRedirectUrl: () => string | null;
|
| /expo/packages/@expo/cli/src/start/platforms/ |
| H A D | PlatformManager.ts | 44 getRedirectUrl: () => string | null; 68 const redirectUrl = this.props.getRedirectUrl();
|
| /expo/packages/@expo/cli/src/start/server/ |
| H A D | BundlerDevServer.ts | 437 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 D | BundlerDevServer-test.ts | 276 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 D | interactiveActions.ts | 34 const interstitialPageUrl = devServer.getRedirectUrl();
|