Home
last modified time | relevance | path

Searched refs:selectAsync (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/cli/src/api/user/__tests__/
H A Dotp-test.ts5 import { promptAsync, selectAsync } from '../../../utils/prompts';
19 asMock(selectAsync).mockClear();
20 asMock(selectAsync).mockImplementation(() => {
83 asMock(selectAsync)
107 expect(selectAsync).toHaveBeenCalledTimes(1);
143 asMock(selectAsync)
178 asMock(selectAsync)
221 asMock(selectAsync)
/expo/packages/@expo/cli/src/run/ios/codeSigning/__tests__/
H A DresolveCertificateSigningIdentity-test.ts4 import { selectAsync } from '../../../../utils/prompts';
51 expect(selectAsync).toBeCalledWith('Development team for signing the app', [
88 asMock(selectAsync).mockResolvedValueOnce(0);
96 expect(selectAsync).toBeCalledWith(expect.any(String), [
/expo/packages/@expo/cli/src/run/ios/options/__tests__/
H A DresolveNativeScheme-test.ts3 import { selectAsync } from '../../../../utils/prompts';
91 asMock(selectAsync).mockResolvedValueOnce('foobar2');
105 asMock(selectAsync).mockResolvedValueOnce('bacon');
/expo/packages/@expo/cli/src/run/ios/codeSigning/
H A DresolveCertificateSigningIdentity.ts9 import { selectAsync } from '../../../utils/prompts';
86 const index = await selectAsync(
/expo/packages/@expo/cli/src/run/ios/options/
H A DresolveNativeScheme.ts8 import { selectAsync } from '../../../utils/prompts';
46 const resolvedSchemeName = await selectAsync(
/expo/packages/@expo/cli/src/api/user/
H A Dotp.ts8 import { promptAsync, selectAsync } from '../../utils/prompts';
92 const selectedValue = await selectAsync('Select a second-factor device:', deviceChoices, {
/expo/packages/@expo/cli/src/start/interface/
H A DinteractiveActions.ts9 import { selectAsync } from '../../utils/prompts';
116 const value = await selectAsync(chalk`Dev tools {dim (native only)}`, [
/expo/packages/@expo/cli/src/utils/
H A Dprompts.ts89 export async function selectAsync<T>( function