Skip to content

Fix the file names referenced in comments #1090

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/guides/using-with-vuex.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down