summaryrefslogtreecommitdiff
path: root/spec/frontend/registry
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-03 12:08:21 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-03 12:08:21 +0000
commit607646ef528729ebb30e593bce0a0447304fccc7 (patch)
tree515db21a0b51f0e6718f0b985bab800c61ce577c /spec/frontend/registry
parent31a432e38a8b70d3ffb16afa8d7cfeee4f5f5921 (diff)
downloadgitlab-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.js4
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();
});