28 lines
850 B
JavaScript
28 lines
850 B
JavaScript
import { mount } from '@vue/test-utils';
|
|
import Checkbox from './Checkbox.vue';
|
|
|
|
describe('Checkbox.vue', () => {
|
|
let wrapper;
|
|
|
|
beforeEach(() => {
|
|
wrapper = mount(Checkbox, {
|
|
props: {
|
|
modelValue: false,
|
|
binary: true
|
|
}
|
|
});
|
|
});
|
|
|
|
it('should exist', () => {
|
|
expect(wrapper.find('.p-checkbox.p-component').exists()).toBe(true);
|
|
expect(wrapper.find('.p-checkbox-icon.pi.pi-check').exists()).toBe(false);
|
|
});
|
|
|
|
it('should exist', async () => {
|
|
await wrapper.setProps({ modelValue: true });
|
|
|
|
expect(wrapper.find('.p-checkbox-checked').exists()).toBe(true);
|
|
expect(wrapper.find('.p-checkbox-box.p-highlight').exists()).toBe(true);
|
|
expect(wrapper.find('.p-checkbox-icon.pi.pi-check').exists()).toBe(true);
|
|
});
|
|
}); |