mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
```ts
|
|
// NoteUI.stories.ts
|
|
// Replace your-renderer with the name of your renderer (e.g. react, vue3)
|
|
import type { Meta, StoryObj } from '@storybook/your-renderer';
|
|
import { expect, userEvent, within } from '@storybook/test';
|
|
|
|
// 👇 Must use this import path to have mocks typed correctly
|
|
import { saveNote } from '#app/actions.mock';
|
|
import { createNotes } from '#mocks/notes';
|
|
import NoteUI from './note-ui';
|
|
|
|
const meta = {
|
|
title: 'Mocked/NoteUI',
|
|
component: NoteUI,
|
|
} satisfies Meta<typeof NoteUI>;
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
const notes = createNotes();
|
|
|
|
export const SaveFlow: Story = {
|
|
name: 'Save Flow ▶',
|
|
args: {
|
|
isEditing: true,
|
|
note: notes[0],
|
|
},
|
|
play: async ({ canvasElement, step }) => {
|
|
const canvas = within(canvasElement);
|
|
|
|
const saveButton = canvas.getByRole('menuitem', { name: /done/i });
|
|
await userEvent.click(saveButton);
|
|
// 👇 This is the mock function, so you can assert its behavior
|
|
await expect(saveNote).toHaveBeenCalled();
|
|
},
|
|
};
|
|
```
|