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', () => {
6767 })
6868 })
6969
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' , () => {
7171 const wrapper = shallow (Actions, { store, localVue })
7272 const input = wrapper .find (' input' )
7373 input .element .value = ' input'
7474 input .trigger (' input' )
7575 expect (actions .actionInput ).toHaveBeenCalled ()
7676 })
7777
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' , () => {
7979 const wrapper = shallow (Actions, { store, localVue })
8080 const input = wrapper .find (' input' )
8181 input .element .value = ' not input'
You can’t perform that action at this time.
0 commit comments