mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
40 lines
1.5 KiB
TypeScript
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']] })
|
|
})
|
|
})
|
|
})
|