mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
24 lines
702 B
TypeScript
24 lines
702 B
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { screen } from '@testing-library/vue'
|
|
import CheckBox from './CheckBox.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders unchecked state', () => expect(this.render(CheckBox).html()).toMatchSnapshot())
|
|
|
|
it('renders checked state', () => expect(this.render(CheckBox, {
|
|
props: {
|
|
modelValue: true
|
|
}
|
|
}).html()).toMatchSnapshot())
|
|
|
|
it('emits the input event', async () => {
|
|
const { emitted } = this.render(CheckBox)
|
|
|
|
await this.user.click(screen.getByRole('checkbox'))
|
|
|
|
expect(emitted()['update:modelValue']).toBeTruthy()
|
|
})
|
|
}
|
|
}
|