Update InputText.spec.js
parent
ff32a760f4
commit
fbac6f5c85
|
@ -13,18 +13,22 @@ describe('InputText.vue', () => {
|
||||||
|
|
||||||
const input = wrapper.find('input');
|
const input = wrapper.find('input');
|
||||||
expect(input.element.value).toEqual('PrimeVue');
|
expect(input.element.value).toEqual('PrimeVue');
|
||||||
})
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe('InputText.vue', () => {
|
|
||||||
it('input event', async () => {
|
it('input event', async () => {
|
||||||
const wrapper = mount(InputText);
|
const wrapper = mount(InputText);
|
||||||
const input = wrapper.find('input');
|
const event = { target: { value: 'a' } };
|
||||||
|
|
||||||
// await input.trigger('input', { keyCode: 65 });
|
await wrapper.vm.onInput(event);
|
||||||
input.element.value = 'a';
|
|
||||||
input.trigger('input');
|
|
||||||
|
|
||||||
expect(input.element.value).toEqual('a');
|
expect(wrapper.emitted()['update:modelValue'][0]).toEqual(['a']);
|
||||||
})
|
});
|
||||||
|
|
||||||
|
it('should filled work', async () => {
|
||||||
|
const wrapper = mount(InputText);
|
||||||
|
|
||||||
|
await wrapper.setProps({ modelValue: 'a' });
|
||||||
|
|
||||||
|
expect(wrapper.vm.filled).toBe(true);
|
||||||
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue