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();
+});