2022-07-21 09:32:09 +00:00
|
|
|
import { expect, it } from 'vitest'
|
|
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
2022-11-29 10:18:58 +00:00
|
|
|
import { screen } from '@testing-library/vue'
|
2022-07-21 09:32:09 +00:00
|
|
|
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 () => {
|
2022-11-29 10:18:58 +00:00
|
|
|
const { emitted } = this.render(CheckBox)
|
2022-07-21 09:32:09 +00:00
|
|
|
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.click(screen.getByRole('checkbox'))
|
2022-07-21 09:32:09 +00:00
|
|
|
|
|
|
|
expect(emitted()['update:modelValue']).toBeTruthy()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|