```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: Meta = { component: MyForm, }; export default meta; type Story = StoryObj; 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('/'); }, }; ```