diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-06-03 12:08:21 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-06-03 12:08:21 +0000 |
commit | 607646ef528729ebb30e593bce0a0447304fccc7 (patch) | |
tree | 515db21a0b51f0e6718f0b985bab800c61ce577c /spec/frontend/registry | |
parent | 31a432e38a8b70d3ffb16afa8d7cfeee4f5f5921 (diff) | |
download | gitlab-ce-607646ef528729ebb30e593bce0a0447304fccc7.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/registry')
-rw-r--r-- | spec/frontend/registry/explorer/pages/index_spec.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/frontend/registry/explorer/pages/index_spec.js b/spec/frontend/registry/explorer/pages/index_spec.js index b558727ed5e..1dc5376cacf 100644 --- a/spec/frontend/registry/explorer/pages/index_spec.js +++ b/spec/frontend/registry/explorer/pages/index_spec.js @@ -1,9 +1,10 @@ import { shallowMount } from '@vue/test-utils'; import component from '~/registry/explorer/pages/index.vue'; -import store from '~/registry/explorer/stores/'; +import { createStore } from '~/registry/explorer/stores/'; describe('List Page', () => { let wrapper; + let store; const findRouterView = () => wrapper.find({ ref: 'router-view' }); @@ -17,6 +18,7 @@ describe('List Page', () => { }; beforeEach(() => { + store = createStore(); mountComponent(); }); |