Searched refs:loginAsync (Results 1 – 7 of 7) sorted by relevance
| /expo/packages/@expo/cli/src/api/user/__tests__/ |
| H A D | actions-test.ts | 6 import { loginAsync, ssoLoginAsync } from '../user'; 25 asMock(loginAsync).mockClear(); 37 asMock(loginAsync) 76 asMock(loginAsync).mockImplementation(async () => {}); 89 expect(loginAsync).toHaveBeenCalledTimes(1); 101 expect(loginAsync).toHaveBeenCalledTimes(1);
|
| H A D | user-test.ts | 16 loginAsync, 104 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 118 describe(loginAsync, () => { 122 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 162 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' }); 171 await loginAsync({ username: 'USERNAME', password: 'PASSWORD' });
|
| H A D | otp-test.ts | 8 import { loginAsync } from '../user'; 49 expect(loginAsync).toHaveBeenCalledTimes(1); 72 expect(loginAsync).toHaveBeenCalledTimes(1); 108 expect(loginAsync).toHaveBeenCalledTimes(1);
|
| /expo/packages/@expo/cli/src/api/user/__mocks__/ |
| H A D | user.ts | 2 export const loginAsync = jest.fn(); constant 6 loginAsync: jest.fn(),
|
| /expo/packages/@expo/cli/src/api/user/ |
| H A D | actions.ts | 5 import { Actor, getUserAsync, loginAsync, ssoLoginAsync } from './user'; 76 await loginAsync({
|
| H A D | otp.ts | 4 import { loginAsync } from './user'; 169 await loginAsync({
|
| H A D | user.ts | 56 export async function loginAsync(json: { function
|