mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
7d1e8631ea
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { describe, it, expect } from 'vitest'
|
|
import { axe } from 'vitest-axe'
|
|
import { mountSuspended } from '@nuxt/test-utils/runtime'
|
|
import { renderEach } from '../component-render'
|
|
import BlogPosts from '../../src/runtime/components/BlogPosts.vue'
|
|
|
|
describe('BlogPosts', () => {
|
|
const posts = [{
|
|
title: 'Title',
|
|
description: 'Description',
|
|
date: '2024-12-13T09:32:32.598Z',
|
|
image: {
|
|
src: 'https://picsum.photos/640/360',
|
|
alt: 'Image alt'
|
|
},
|
|
badge: { label: 'Badge' },
|
|
authors: [{
|
|
name: 'Author',
|
|
avatar: {
|
|
src: 'https://i.pravatar.cc/120?img=1'
|
|
}
|
|
}]
|
|
}]
|
|
|
|
const props = { posts }
|
|
|
|
renderEach(BlogPosts, [
|
|
// Props
|
|
['with posts', { props }],
|
|
['with orientation vertical', { props: { ...props, orientation: 'vertical' } }],
|
|
['with as', { props: { ...props, as: 'section' } }],
|
|
['with class', { props: { ...props, class: 'gap-y-12' } }],
|
|
// Slots
|
|
['with default slot', { props, slots: { default: () => 'Default slot' } }]
|
|
])
|
|
|
|
it('passes accessibility tests', async () => {
|
|
const wrapper = await mountSuspended(BlogPosts, {
|
|
props
|
|
})
|
|
|
|
expect(await axe(wrapper.element)).toHaveNoViolations()
|
|
})
|
|
})
|