mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
29 lines
777 B
Plaintext
29 lines
777 B
Plaintext
```ts
|
|
// MyForm.stories.ts
|
|
import { expect, userEvent, within } from '@storybook/test';
|
|
import { Meta, StoryObj } from '@storybook/react';
|
|
// 👇 Must use this import path to have mocks typed correctly
|
|
import { revalidatePath } from '@storybook/nextjs/cache.mock';
|
|
|
|
import MyForm from './my-form';
|
|
|
|
const meta = {
|
|
component: MyForm,
|
|
} satisfies Meta<typeof MyForm>;
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Submitted: Story = {
|
|
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('/');
|
|
},
|
|
};
|
|
```
|