koel/resources/assets/js/components/layout/main-wrapper/sidebar/YouTubeSidebarItem.spec.ts
2024-07-06 17:45:01 +02:00

17 lines
430 B
TypeScript

import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import YouTubeSidebarItem from './YouTubeSidebarItem.vue'
new class extends UnitTestCase {
protected test () {
it('renders', async () => {
const { html } = this.render(YouTubeSidebarItem, {
slots: {
default: 'Another One Bites the Dust',
},
})
expect(html()).toMatchSnapshot()
})
}
}