Files
ui/test/components/ColorPicker.spec.ts
renovate[bot] 127e06ae83 chore(deps): update all non-major dependencies (v3) (#4443)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-07-02 11:39:23 +02:00

40 lines
1.5 KiB
TypeScript

import { describe, it, expect, test } from 'vitest'
import { mountSuspended } from '@nuxt/test-utils/runtime'
import ColorPicker from '../../src/runtime/components/ColorPicker.vue'
import 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%)'],
['lab', 'lab(68.88% -60.41% 32.55%)'],
['cmyk', 'cmyk(100%, 0%, 45.08%, 24.31%)']
]
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']] })
})
})
})