mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { describe, it, expect } from 'vitest'
|
|
import Badge, { type BadgeProps, type BadgeSlots } from '../../src/runtime/components/Badge.vue'
|
|
import ComponentRender from '../component-render'
|
|
import theme from '#build/ui/badge'
|
|
|
|
describe('Badge', () => {
|
|
const sizes = Object.keys(theme.variants.size) as any
|
|
const variants = Object.keys(theme.variants.variant) as any
|
|
|
|
it.each([
|
|
// Props
|
|
['with label', { props: { label: 'Badge' } }],
|
|
['with as', { props: { label: 'Badge', as: 'div' } }],
|
|
['with class', { props: { label: 'Badge', class: 'rounded-full font-bold' } }],
|
|
...sizes.map((size: string) => [`with size ${size}`, { props: { label: 'Badge', size } }]),
|
|
...variants.map((variant: string) => [`with primary variant ${variant}`, { props: { label: 'Badge', variant } }]),
|
|
...variants.map((variant: string) => [`with neutral variant ${variant}`, { props: { label: 'Badge', variant, color: 'neutral' } }]),
|
|
// Slots
|
|
['with default slot', { slots: { default: () => 'Default slot' } }]
|
|
])('renders %s correctly', async (nameOrHtml: string, options: { props?: BadgeProps, slots?: Partial<BadgeSlots> }) => {
|
|
const html = await ComponentRender(nameOrHtml, options, Badge)
|
|
expect(html).toMatchSnapshot()
|
|
})
|
|
})
|