Add missing TODOs

This commit is contained in:
Kyle Gach 2024-04-16 22:06:47 -06:00
parent ec6742b1ea
commit abc9b7cd8b

View File

@ -1001,7 +1001,9 @@ TK: Example snippet
Type: `typeof import('next/cache')`
TK
TK: Description
TK: Example snippet
#### `@storybook/nextjs/headers.mock`
@ -1019,18 +1021,24 @@ For cookies, you can use the existing API to write them, eg. `cookies().set('fir
Because `headers()`, `cookies()` and their sub-functions are all mocks you can use any [mock utilities](https://vitest.dev/api/mock.html) in your stories, like `headers().getAll.mock.calls`.
TK: Example snippet
#### `@storybook/nextjs/navigation.mock`
Type: `typeof import('next/navigation')`
Exports mocks that replaces the actual implementation of `next/navigation` exports. Use these to mock implementations or assert on mock calls in a story's `play`-function.
TK: Example snippet
#### `@storybook/nextjs/router.mock`
Type: `typeof import('next/router')`
Exports mocks that replaces the actual implementation of `next/router` exports. Use these to mock implementations or assert on mock calls in a story's `play`-function.
TK: Example snippet
### Options
You can pass an options object for additional configuration if needed: