Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
7e0af6cf
Commit
7e0af6cf
authored
May 08, 2018
by
Dennis Tang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add rewire gotcha about testing vuex actions/getters
parent
6fd75502
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
doc/development/fe_guide/vuex.md
doc/development/fe_guide/vuex.md
+12
-0
No files found.
doc/development/fe_guide/vuex.md
View file @
7e0af6cf
...
...
@@ -352,6 +352,18 @@ describe('component', () => {
});
```
#### Testing Vuex actions and getters
Because we're currently using
`babel-plugin-rewire`
, you may encounter the following error when testing your Vuex actions and getters:
`[vuex] actions should be function or object with "handler" function`
To prevent this error from happening, you need to export an empty function:
```
// /stores/getters.js or /stores/actions.js
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};
```
[
vuex-docs
]:
https://vuex.vuejs.org
[
vuex-structure
]:
https://vuex.vuejs.org/en/structure.html
[
vuex-mutations
]:
https://vuex.vuejs.org/en/mutations.html
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment