From abbe1e5b7cc24eea2e26ddeeecb3ac6145a52dd5 Mon Sep 17 00:00:00 2001 From: Nicholas Litwin Date: Tue, 8 Jan 2019 14:50:38 -0800 Subject: [PATCH] Fix the file names referenced in comments --- docs/guides/using-with-vuex.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/guides/using-with-vuex.md b/docs/guides/using-with-vuex.md index cd01db127..061185962 100644 --- a/docs/guides/using-with-vuex.md +++ b/docs/guides/using-with-vuex.md @@ -343,7 +343,7 @@ The downside is that when a test breaks, it can be difficult to find where the p Let's write a test. When we create a store, we'll use `localVue` to avoid polluting the Vue base constructor. The test creates a store using the `store-config.js` export: ```js -// store-config.spec.js +// store-config.js import mutations from './mutations' import getters from './getters' @@ -358,6 +358,8 @@ export default { ``` ```js +// store-config.spec.js + import { createLocalVue } from '@vue/test-utils' import Vuex from 'vuex' import storeConfig from './store-config'