chore: fix all typos (#9053)

This commit is contained in:
neverland
2021-07-17 16:07:42 +08:00
committed by GitHub
parent 5807f39687
commit 34d4937f2b
28 changed files with 38 additions and 44 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { Field } from '..';
import { mount } from '../../../test';
test('should emit "update:modelValue" event when after inputing', () => {
test('should emit "update:modelValue" event when after inputting', () => {
const wrapper = mount(Field);
const input = wrapper.find('input');
@@ -16,7 +16,7 @@ test('should emit click-input event when input is clicked', () => {
expect(wrapper.emitted('click-input')[0][0]).toBeTruthy();
});
test('should evit click-input event when using input slot', () => {
test('should emit click-input event when using input slot', () => {
const wrapper = mount(Field, {
slots: {
input: () => 'Custom Input',