mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
23 lines
568 B
Plaintext
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('/');
|
|
},
|
|
};
|
|
```
|