koel/resources/assets/js/components/ui/Btn.spec.ts
2022-05-13 19:58:38 +02:00

15 lines
339 B
TypeScript

import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import Btn from './Btn.vue'
new class extends UnitTestCase {
protected test () {
it('renders', () => {
expect(this.render(Btn, {
slots: {
default: 'Click Me Nao'
}
}).html()).toMatchSnapshot()
})
}
}