Home
last modified time | relevance | path

Searched refs:withSectionLog (Results 1 – 3 of 3) sorted by relevance

/expo/packages/create-expo/src/utils/__tests__/
H A Dlog.test.ts4 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 DcreateAsync.ts28 import { withSectionLog } from './utils/log';
108 await withSectionLog(
157 await withSectionLog(() => downloadAndExtractExampleAsync(projectRoot, resolvedExample), {
/expo/packages/create-expo/src/utils/
H A Dlog.ts5 export function withSectionLog<T>( function