How to test the components that uses vuex with injection key #588
-
since (If I call |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I completely overlooked that https://next.vue-test-utils.vuejs.org/api/#global plugins options accepts arguments if passed it with array. |
Beta Was this translation helpful? Give feedback.
-
I usually use const wrapper = mount(AppWithVuex, { global: { provide: { [myStoreKey]: store } } }); |
Beta Was this translation helpful? Give feedback.
I completely overlooked that https://next.vue-test-utils.vuejs.org/api/#global plugins options accepts arguments if passed it with array.