test(PasswordInput): update test cases

This commit is contained in:
chenjiahan 2020-11-28 19:22:43 +08:00
parent 669d2e77ae
commit b317ac46ce
3 changed files with 26 additions and 16 deletions

View File

@ -0,0 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should render error info correctly 1`] = `
<div class="van-password-input__error-info">
error!
</div>
`;

View File

@ -1,16 +0,0 @@
import PasswordInput from '..';
import { mount } from '@vue/test-utils';
test('focus event', () => {
const focus = jest.fn();
const wrapper = mount(PasswordInput, {
context: {
on: {
focus,
},
},
});
wrapper.find('.van-password-input__security').trigger('touchstart');
expect(focus).toHaveBeenCalledTimes(1);
});

View File

@ -0,0 +1,19 @@
import PasswordInput from '..';
import { mount } from '@vue/test-utils';
test('should emit focus event when security is touched', () => {
const wrapper = mount(PasswordInput);
wrapper.find('.van-password-input__security').trigger('touchstart');
expect(wrapper.emitted('focus').length).toEqual(1);
});
test('should render error info correctly', () => {
const wrapper = mount(PasswordInput, {
props: {
errorInfo: 'error!',
},
});
expect(
wrapper.find('.van-password-input__error-info').html()
).toMatchSnapshot();
});