```ts // MyForm.stories.ts import { expect, fireEvent, userEvent, within } from '@storybook/test'; import { Meta, StoryObj } from '@storybook/react'; // 👇 Must use this import path to have mocks typed correctly import { redirect, getRouter } from '@storybook/nextjs/navigation.mock'; import MyForm from './my-form'; const meta: Meta = { component: MyForm, parameters: { nextjs: { // 👇 As in the Next.js application, next/navigation only works using App Router appDirectory: true, }, }, }; export default meta; type Story = StoryObj; export const Unauthenticated: Story = { async play() => { // 👇 Assert that your component called redirect() await expect(redirect).toHaveBeenCalledWith('/login', 'replace'); }, }; export const GoBack: Story = { async play({ canvasElement }) { const canvas = within(canvasElement); const backBtn = await canvas.findByText('Go back'); await userEvent.click(backBtn); // 👇 Assert that your component called back() await expect(getRouter().back).toHaveBeenCalled(); }, }; ```