We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bcb76b commit 900ff09Copy full SHA for 900ff09
packages/cli-kit/bin/documentation/examples.ts
@@ -593,10 +593,11 @@ export const examples: {[key in string]: Example} = {
593
594
await renderSingleTask({
595
title: 'Loading app',
596
- taskPromise: async () => {
+ task: async () => {
597
await sleep(1)
598
},
599
- }, {renderOptions: {stdout: stdout as any, debug: true}})
+ renderOptions: {stdout: stdout as any, debug: true}
600
+ })
601
602
// Find the last frame that includes mention of "Loading"
603
const loadingFrame = stdout.frames.findLast(frame => frame.includes('Loading'))
0 commit comments