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/project_empty_state_spec.js')
-rw-r--r--spec/frontend/registry/list/components/project_empty_state_spec.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/frontend/registry/list/components/project_empty_state_spec.js b/spec/frontend/registry/list/components/project_empty_state_spec.js
deleted file mode 100644
index d29b9e47233..00000000000
--- a/spec/frontend/registry/list/components/project_empty_state_spec.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import { mount } from '@vue/test-utils';
-import projectEmptyState from '~/registry/list/components/project_empty_state.vue';
-
-describe('Registry Project Empty state', () => {
- let wrapper;
-
- beforeEach(() => {
- wrapper = mount(projectEmptyState, {
- propsData: {
- noContainersImage: 'imageUrl',
- helpPagePath: 'help',
- repositoryUrl: 'url',
- twoFactorAuthHelpLink: 'help_link',
- personalAccessTokensHelpLink: 'personal_token',
- registryHostUrlWithPort: 'host',
- },
- });
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('to match the default snapshot', () => {
- expect(wrapper.element).toMatchSnapshot();
- });
-});