Files
nuxt__ui/test/components/DashboardSidebarCollapse.spec.ts
Jakub Michálek f2d73e5bee test(components): add a11y tests (#5181)
Co-authored-by: Jakub <jakub.michalek@freelo.io>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-10-14 13:56:06 +02:00

38 lines
1.4 KiB
TypeScript

import { defineComponent } from 'vue'
import { describe, it, expect } from 'vitest'
import { axe } from 'vitest-axe'
import { mountSuspended } from '@nuxt/test-utils/runtime'
import DashboardGroup from '../../src/runtime/components/DashboardGroup.vue'
import DashboardSidebarCollapse from '../../src/runtime/components/DashboardSidebarCollapse.vue'
import type { DashboardSidebarCollapseProps } from '../../src/runtime/components/DashboardSidebarCollapse.vue'
const DashboardWrapper = defineComponent({
components: {
UDashboardGroup: DashboardGroup as any,
UDashboardSidebarCollapse: DashboardSidebarCollapse as any
},
inheritAttrs: false,
template: `<UDashboardGroup>
<UDashboardSidebarCollapse v-bind="$attrs" />
</UDashboardGroup>`
})
describe('DashboardSidebarCollapse', () => {
it.each([
// Props
['with color', { props: { color: 'primary' as const } }],
['with variant', { props: { variant: 'solid' as const } }],
['with side', { props: { side: 'right' as const } }],
['with class', { props: { class: 'p-3' } }]
])('renders %s correctly', async (_: string, options: { props?: DashboardSidebarCollapseProps }) => {
const wrapper = await mountSuspended(DashboardWrapper, options)
expect(wrapper.html()).toMatchSnapshot()
})
it('passes accessibility tests', async () => {
const wrapper = await mountSuspended(DashboardWrapper)
expect(await axe(wrapper.element)).toHaveNoViolations()
})
})