mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Delete InputOtp.spec.js
This commit is contained in:
parent
68741f54d5
commit
47a2324b24
1 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import InputSwitch from './InputSwitch.vue';
|
||||
|
||||
describe('InputSwitch.vue', () => {
|
||||
it('should exist', async () => {
|
||||
const wrapper = mount(InputSwitch);
|
||||
|
||||
expect(wrapper.find('.p-inputswitch.p-component').exists()).toBe(true);
|
||||
expect(wrapper.find('.p-inputswitch-slider').exists()).toBe(true);
|
||||
|
||||
await wrapper.vm.onChange({});
|
||||
|
||||
expect(wrapper.emitted()['update:modelValue'][0]).toEqual([true]);
|
||||
|
||||
await wrapper.setProps({ modelValue: true });
|
||||
|
||||
expect(wrapper.vm.checked).toBe(true);
|
||||
expect(wrapper.find('.p-inputswitch').classes()).toContain('p-highlight');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue