koel/resources/assets/js/components/ui/Btn.spec.ts

16 lines
339 B
TypeScript
Raw Normal View History

2022-05-11 07:51:30 +00:00
import { expect, it } from 'vitest'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
2022-05-11 07:51:30 +00:00
import Btn from './Btn.vue'
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
2022-05-11 07:51:30 +00:00
protected test () {
it('renders', () => {
expect(this.render(Btn, {
slots: {
default: 'Click Me Nao'
}
}).html()).toMatchSnapshot()
})
}
}