feat(web): set up Storybook (preview + MSW + stories for real components)

This commit is contained in:
2026-06-05 16:55:40 +02:00
parent 4e1138f8ce
commit b2d026f217
17 changed files with 2400 additions and 30 deletions
@@ -0,0 +1,35 @@
import type { Meta, StoryObj } from '@storybook/react-vite'
import { expect } from 'storybook/test'
import { Checkbox } from './checkbox'
const meta = {
component: Checkbox,
args: { 'aria-label': 'required' },
tags: ['ai-generated'],
} satisfies Meta<typeof Checkbox>
export default meta
type Story = StoryObj<typeof meta>
export const Unchecked: Story = {
play: async ({ canvas }) => {
await expect(canvas.getByRole('checkbox')).toHaveAttribute('aria-checked', 'false')
},
}
export const Checked: Story = {
args: { defaultChecked: true },
play: async ({ canvas }) => {
await expect(canvas.getByRole('checkbox')).toHaveAttribute('aria-checked', 'true')
},
}
export const Toggle: Story = {
play: async ({ canvas, userEvent }) => {
const checkbox = canvas.getByRole('checkbox')
await expect(checkbox).toHaveAttribute('aria-checked', 'false')
await userEvent.click(checkbox)
await expect(checkbox).toHaveAttribute('aria-checked', 'true')
},
}