File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ describe('Actions.vue', () => {
67
67
})
68
68
})
69
69
70
- it (' calls store action actionInput when input value is input and an input even is fired' , () => {
70
+ it (' calls store action actionInput when input value is input and an input event is fired' , () => {
71
71
const wrapper = shallow (Actions, { store, localVue })
72
72
const input = wrapper .find (' input' )
73
73
input .element .value = ' input'
74
74
input .trigger (' input' )
75
75
expect (actions .actionInput ).toHaveBeenCalled ()
76
76
})
77
77
78
- it (' does not call store action actionInput when input value is not input and an input even is fired' , () => {
78
+ it (' does not call store action actionInput when input value is not input and an input event is fired' , () => {
79
79
const wrapper = shallow (Actions, { store, localVue })
80
80
const input = wrapper .find (' input' )
81
81
input .element .value = ' not input'
You can’t perform that action at this time.
0 commit comments