Home
last modified time | relevance | path

Searched refs:retryUsernamePasswordAuthWithOTPAsync (Results 1 – 4 of 4) sorted by relevance

/expo/packages/@expo/cli/src/api/user/__tests__/
H A Dotp-test.ts7 import { retryUsernamePasswordAuthWithOTPAsync, UserSecondFactorDeviceMethod } from '../otp';
25 describe(retryUsernamePasswordAuthWithOTPAsync, () => {
33 await retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
59 await retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
89 await retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
119 retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
149 await retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
192 await retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
228 retryUsernamePasswordAuthWithOTPAsync('blah', 'blah', {
H A Dactions-test.ts5 import { retryUsernamePasswordAuthWithOTPAsync, UserSecondFactorDeviceMethod } from '../otp';
59 expect(retryUsernamePasswordAuthWithOTPAsync).toHaveBeenCalledWith('hello', 'world', {
/expo/packages/@expo/cli/src/api/user/
H A Dactions.ts4 import { retryUsernamePasswordAuthWithOTPAsync } from './otp';
83 await retryUsernamePasswordAuthWithOTPAsync(
H A Dotp.ts130 export async function retryUsernamePasswordAuthWithOTPAsync( function