Files
ui/test/components/ColorPicker.spec.ts
2024-12-05 14:11:43 +01:00

38 lines
1.4 KiB
TypeScript

import { describe, it, expect, test } from 'vitest'
import { mountSuspended } from '@nuxt/test-utils/runtime'
import ColorPicker, { type ColorPickerProps } from '../../src/runtime/components/ColorPicker.vue'
import ComponentRender from '../component-render'
import theme from '#build/ui/color-picker'
describe('ColorPicker', () => {
const sizes = Object.keys(theme.variants.size) as any
const formats = [
['hex', '#00C16A'],
['rgb', 'rgb(0, 193, 106)'],
['hsl', 'hsl(153, 100%, 37.8%)'],
['hwb', 'hwb(150, 0%, 24%)']
]
it.each([
// Props
['with disabled', { props: { disabled: true } }],
...sizes.map((size: string) => [`with size ${size}`, { props: { size } }]),
...formats.map(format => [`with format ${format[0]}`, { props: { format: format[0], defaultValue: format[1] } }]),
['with as', { props: { as: 'section' } }],
['with class', { props: { class: 'w-96' } }],
['with ui', { props: { ui: { picker: 'gap-8' } } }]
])('renders %s correctly', async (nameOrHtml: string, options: { props?: ColorPickerProps }) => {
const html = await ComponentRender(nameOrHtml, options, ColorPicker)
expect(html).toMatchSnapshot()
})
describe('emits', () => {
test('update:modelValue event', async () => {
const wrapper = await mountSuspended(ColorPicker)
await wrapper.setValue('#00C16A')
expect(wrapper.emitted()).toMatchObject({ 'update:modelValue': [['#00C16A']] })
})
})
})