chore(Search): fix spec typing (#8245)

This commit is contained in:
neverland 2021-03-02 09:42:57 +08:00 committed by GitHub
parent bbb882acfa
commit 29890efedb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import Search from '..';
import { mount } from '../../../test';
import type { ComponentInstance } from '../../utils';
test('should emit update:modelValue event when input value changed', () => {
const onUpdateModelValue = jest.fn();
@ -125,7 +126,7 @@ test('should call input.focus when vm.focus is called', () => {
const onFocus = jest.fn();
wrapper.find('input').element.focus = onFocus;
wrapper.vm.focus();
(wrapper.vm as ComponentInstance).focus();
expect(onFocus).toHaveBeenCalledTimes(1);
});
@ -134,6 +135,6 @@ test('should call input.blur when vm.blur is called', () => {
const onBlur = jest.fn();
wrapper.find('input').element.blur = onBlur;
wrapper.vm.blur();
(wrapper.vm as ComponentInstance).blur();
expect(onBlur).toHaveBeenCalledTimes(1);
});