Skip to content

Commit 22499a4

Browse files
Aaron Sumeddyerburgh
Aaron Sum
authored andcommitted
docs: fix typo (#1021)
1 parent e20d854 commit 22499a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/guides/using-with-vuex.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('Actions.vue', () => {
9595

9696
What’s happening here? First we tell Vue to use Vuex with the `localVue.use` method. This is just a wrapper around `Vue.use`.
9797

98-
We then make a mock store by calling `new Vuex.store` with our mock values. We only pass it the actions, since that’s all we care about.
98+
We then make a mock store by calling `new Vuex.Store` with our mock values. We only pass it the actions, since that’s all we care about.
9999

100100
The actions are [jest mock functions](https://facebook.github.io/jest/docs/en/mock-functions.html). These mock functions give us methods to assert whether the actions were called or not.
101101

0 commit comments

Comments
 (0)