mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
```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 = {
|
|
component: MyForm,
|
|
parameters: {
|
|
nextjs: {
|
|
// 👇 As in the Next.js application, next/navigation only works using App Router
|
|
appDirectory: true,
|
|
},
|
|
},
|
|
} satisfies Meta<typeof MyForm>;
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
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();
|
|
},
|
|
};
|
|
```
|