Searched refs:selectAsync (Results 1 – 8 of 8) sorted by relevance
5 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)
4 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), [
3 import { selectAsync } from '../../../../utils/prompts';91 asMock(selectAsync).mockResolvedValueOnce('foobar2');105 asMock(selectAsync).mockResolvedValueOnce('bacon');
9 import { selectAsync } from '../../../utils/prompts';86 const index = await selectAsync(
8 import { selectAsync } from '../../../utils/prompts';46 const resolvedSchemeName = await selectAsync(
8 import { promptAsync, selectAsync } from '../../utils/prompts';92 const selectedValue = await selectAsync('Select a second-factor device:', deviceChoices, {
9 import { selectAsync } from '../../utils/prompts';116 const value = await selectAsync(chalk`Dev tools {dim (native only)}`, [
89 export async function selectAsync<T>( function