| 206 | } |
| 207 | |
| 208 | export interface RunTaskOptions { |
| 209 | spinner?: boolean; |
| 210 | } |
| 211 | |
| 212 | export async function runTask<T>(title: string, fn: () => Promise<T>): Promise<T> { |
| 213 | const chain = output.createTaskChain(); |
nothing calls this directly
no outgoing calls
no test coverage detected