Searched refs:withSectionLog (Results 1 – 3 of 3) sorted by relevance
| /expo/packages/create-expo/src/utils/__tests__/ |
| H A D | log.test.ts | 4 import { withSectionLog } from '../log'; 8 describe(withSectionLog, () => { 12 await withSectionLog(() => Promise.resolve(), { 28 await withSectionLog(() => Promise.resolve(), { 42 const result = await withSectionLog(() => Promise.resolve('hello world'), { 52 await withSectionLog(() => Promise.resolve(), { 66 const spinner = await withSectionLog((ora) => Promise.resolve(ora), { 79 await withSectionLog(() => Promise.reject(error), { 91 const spinner = await withSectionLog((ora) => Promise.reject(ora), {
|
| /expo/packages/create-expo/src/ |
| H A D | createAsync.ts | 28 import { withSectionLog } from './utils/log'; 108 await withSectionLog( 157 await withSectionLog(() => downloadAndExtractExampleAsync(projectRoot, resolvedExample), {
|
| /expo/packages/create-expo/src/utils/ |
| H A D | log.ts | 5 export function withSectionLog<T>( function
|