Commit ff1b4428 authored by Paul Slaughter's avatar Paul Slaughter

Export default in vuex_shared/modal/actions

**Why?**
This prevents erros when using actions in karma test.
parent d9e4e3f7
...@@ -15,3 +15,6 @@ export const show = ({ commit }) => { ...@@ -15,3 +15,6 @@ export const show = ({ commit }) => {
export const hide = ({ commit }) => { export const hide = ({ commit }) => {
commit(types.HIDE); commit(types.HIDE);
}; };
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment