Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/registry/list/components/group_empty_state_spec.js')
-rw-r--r--spec/frontend/registry/list/components/group_empty_state_spec.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/spec/frontend/registry/list/components/group_empty_state_spec.js b/spec/frontend/registry/list/components/group_empty_state_spec.js
deleted file mode 100644
index 7541c3d459c..00000000000
--- a/spec/frontend/registry/list/components/group_empty_state_spec.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import { mount } from '@vue/test-utils';
-import groupEmptyState from '~/registry/list/components/group_empty_state.vue';
-
-describe('Registry Group Empty state', () => {
- let wrapper;
-
- beforeEach(() => {
- wrapper = mount(groupEmptyState, {
- propsData: {
- noContainersImage: 'imageUrl',
- helpPagePath: 'help',
- },
- });
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('to match the default snapshot', () => {
- expect(wrapper.element).toMatchSnapshot();
- });
-});