Searched refs:startAuthSessionAsync (Results 1 – 7 of 7) sorted by relevance
| /expo/packages/expo-dev-launcher/bundle/screens/__tests__/ |
| H A D | UserProfileScreen.test.tsx | 4 import { startAuthSessionAsync } from '../../functions/startAuthSessionAsync'; 9 jest.mock('../../functions/startAuthSessionAsync'); 12 const mockStartAuthSession = startAuthSessionAsync as jest.Mock; 62 expect(startAuthSessionAsync).not.toHaveBeenCalled(); 72 expect(startAuthSessionAsync).toHaveBeenCalledTimes(1); 73 expect(startAuthSessionAsync).toHaveBeenCalledWith('login'); 88 expect(startAuthSessionAsync).not.toHaveBeenCalled(); 98 expect(startAuthSessionAsync).toHaveBeenCalledTimes(1); 99 expect(startAuthSessionAsync).toHaveBeenCalledWith('signup');
|
| /expo/packages/expo-dev-launcher/bundle/functions/__tests__/ |
| H A D | startAuthSessionAsync.test.ts | 3 import { startAuthSessionAsync } from '../startAuthSessionAsync'; 27 await startAuthSessionAsync('signup'); 47 await startAuthSessionAsync('login');
|
| /expo/packages/expo-dev-launcher/bundle/functions/__mocks__/ |
| H A D | startAuthSessionAsync.ts | 1 export const startAuthSessionAsync = jest.fn(); constant
|
| /expo/packages/expo-dev-launcher/bundle/providers/ |
| H A D | UserContextProvider.tsx | 6 import { startAuthSessionAsync } from '../functions/startAuthSessionAsync'; 42 const sessionSecret = await startAuthSessionAsync(type).catch((cancelled) => {});
|
| /expo/packages/expo-dev-launcher/bundle/functions/ |
| H A D | startAuthSessionAsync.ts | 6 export async function startAuthSessionAsync(type: 'signup' | 'login') { function
|
| /expo/packages/expo-dev-launcher/ios/ |
| H A D | main.jsbundle | 1248 …function I(){return(I=(0,n.default)((function*(t){var n=yield(0,f.startAuthSessionAsync)(t).catch(… 1249 …{var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.startAuthSessionAsync=function(n…
|
| /expo/packages/expo-dev-launcher/android/src/debug/assets/ |
| H A D | expo_dev_launcher_android.bundle | 1249 …function I(){return(I=(0,n.default)((function*(t){var n=yield(0,f.startAuthSessionAsync)(t).catch(… 1250 …{var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.startAuthSessionAsync=function(n…
|