storybook/docs/snippets/react/nextjs-cache-mock.js.mdx
2024-04-30 22:21:31 -06:00

23 lines
568 B
Plaintext

```js
// MyForm.stories.js
import { expect, userEvent, within } from '@storybook/test';
import { revalidatePath } from '@storybook/nextjs/cache.mock';
import MyForm from './my-form';
export default {
component: MyForm,
};
export const Submitted = {
async play({ canvasElement }) {
const canvas = within(canvasElement);
const submitButton = canvas.getByRole('button', { name: /submit/i });
await userEvent.click(saveButton);
// 👇 Use any mock assertions on the function
await expect(revalidatePath).toHaveBeenCalledWith('/');
},
};
```