You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/using-with-vuex.md
+10-11
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,6 @@ describe('Actions.vue', () => {
62
62
actionInput:jest.fn()
63
63
}
64
64
store =newVuex.Store({
65
-
state: {},
66
65
actions
67
66
})
68
67
})
@@ -126,7 +125,7 @@ Great, so now we can mock actions, let’s look at mocking getters.
126
125
</script>
127
126
```
128
127
129
-
This is a fairly simple component. It renders the result of the getters `clicks` and `inputValue`. Again, we don’t really care about what those getters returns – just that the result of them is being rendered correctly.
128
+
This is a fairly simple component. It renders the result of the getters `clicks` and `inputValue`. Again, we don’t really care about what those getters return – just that their result is being rendered correctly.
0 commit comments