From b317ac46ce138f371d7569b00aabc071ce15bc71 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 28 Nov 2020 19:22:43 +0800 Subject: [PATCH] test(PasswordInput): update test cases --- .../test/__snapshots__/index.spec.js.snap | 7 +++++++ src/password-input/test/index.legacy.js | 16 ---------------- src/password-input/test/index.spec.js | 19 +++++++++++++++++++ 3 files changed, 26 insertions(+), 16 deletions(-) create mode 100644 src/password-input/test/__snapshots__/index.spec.js.snap delete mode 100644 src/password-input/test/index.legacy.js create mode 100644 src/password-input/test/index.spec.js diff --git a/src/password-input/test/__snapshots__/index.spec.js.snap b/src/password-input/test/__snapshots__/index.spec.js.snap new file mode 100644 index 000000000..0844e4f8b --- /dev/null +++ b/src/password-input/test/__snapshots__/index.spec.js.snap @@ -0,0 +1,7 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`should render error info correctly 1`] = ` +
+ error! +
+`; diff --git a/src/password-input/test/index.legacy.js b/src/password-input/test/index.legacy.js deleted file mode 100644 index 2a10ed81c..000000000 --- a/src/password-input/test/index.legacy.js +++ /dev/null @@ -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); -}); diff --git a/src/password-input/test/index.spec.js b/src/password-input/test/index.spec.js new file mode 100644 index 000000000..33ce961d3 --- /dev/null +++ b/src/password-input/test/index.spec.js @@ -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(); +});