Merge branch 'add-missing-vuex-use' into 'master'

Add missing Vue.use(Vuex) in test

See merge request gitlab-org/gitlab-ce!32837
This commit is contained in:
Paul Slaughter 2019-09-11 15:27:54 +00:00
commit f95857c8c5
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,8 @@ import Vuex from 'vuex';
import component from '~/reports/components/modal_open_name.vue';
import { mountComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
Vue.use(Vuex);
describe('Modal open name', () => {
const Component = Vue.extend(component);
let vm;