Skip to content

Commit 0d1608c

Browse files
committed
Fix for missing test image
1 parent 65738a5 commit 0d1608c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

docs/migrating-from-v3.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import MigrateV4UsingAi from "/snippets/migrate-v4-using-ai.mdx";
1919
| [onCancel](/tasks/overview#oncancel-function) | Run code when a run is cancelled. |
2020
| [Hidden tasks](/hidden-tasks) | Create tasks that are not exported from your trigger files but can still be executed. |
2121
| [Middleware & locals](#middleware-and-locals) | The middleware system runs at the top level, executing before and after all lifecycle hooks. The locals API allows sharing data between middleware and hooks. |
22-
| [useWaitToken](/frontend/react-hooks/use-wait-token) | Use the useWaitToken hook to complete a wait token from a React component. |
22+
| [useWaitToken](/realtime/react-hooks/use-wait-token) | Use the useWaitToken hook to complete a wait token from a React component. |
2323
| [ai.tool](/tasks/schemaTask#ai-tool) | Create an AI tool from an existing `schemaTask` to use with the Vercel [AI SDK](https://vercel.com/docs/ai-sdk). |
2424

2525
## Node.js support

docs/snippets/step-run-test.mdx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<Step title="Perform a test run using the dashboard">
22

3-
The CLI `dev` command spits out various useful URLs. Right now we want to visit the Test page <Icon icon="circle-1" iconType="solid" size={20} color="F43F47" />.
3+
The CLI `dev` command spits out various useful URLs. Right now we want to visit the Test page.
44

5-
You should see our Example task in the list <Icon icon="circle-2" iconType="solid" size={20} color="F43F47" />, select it. Most tasks have a "payload" which you enter in the JSON editor <Icon icon="circle-3" iconType="solid" size={20} color="F43F47" />, but our example task doesn't need any input.
5+
You should see our Example task in the list <Icon icon="circle-1" iconType="solid" size={20} color="F43F47" />, select it. Most tasks have a "payload" which you enter in the JSON editor <Icon icon="circle-2" iconType="solid" size={20} color="F43F47" />, but our example task doesn't need any input.
66

7-
Press the "Run test" button <Icon icon="circle-4" iconType="solid" size={20} color="F43F47" />.
7+
You can configure options on the run <Icon icon="circle-3" iconType="solid" size={20} color="F43F47" />, view recent payloads <Icon icon="circle-4" iconType="solid" size={20} color="F43F47" />, and create run templates <Icon icon="circle-5" iconType="solid" size={20} color="F43F47" />.
88

9-
![Test page](/images/test-page.png)
9+
Press the "Run test" button <Icon icon="circle-6" iconType="solid" size={20} color="F43F47" />.
10+
11+
![Test page](/images/test-dashboard.png)
1012

1113
</Step>

0 commit comments

Comments
 (0)