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/vue_shared/components/security_reports/security_summary_spec.js')
-rw-r--r--spec/frontend/vue_shared/components/security_reports/security_summary_spec.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/spec/frontend/vue_shared/components/security_reports/security_summary_spec.js b/spec/frontend/vue_shared/components/security_reports/security_summary_spec.js
deleted file mode 100644
index 61cdc329220..00000000000
--- a/spec/frontend/vue_shared/components/security_reports/security_summary_spec.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import { GlSprintf } from '@gitlab/ui';
-import { shallowMount } from '@vue/test-utils';
-import SecuritySummary from '~/vue_shared/security_reports/components/security_summary.vue';
-import { groupedTextBuilder } from '~/vue_shared/security_reports/store/utils';
-
-describe('SecuritySummary component', () => {
- let wrapper;
-
- const createWrapper = (message) => {
- wrapper = shallowMount(SecuritySummary, {
- propsData: { message },
- stubs: {
- GlSprintf,
- },
- });
- };
-
- describe.each([
- { message: '' },
- { message: 'foo' },
- groupedTextBuilder({ reportType: 'Security scanning', critical: 1, high: 0, total: 1 }),
- groupedTextBuilder({ reportType: 'Security scanning', critical: 0, high: 1, total: 1 }),
- groupedTextBuilder({ reportType: 'Security scanning', critical: 1, high: 2, total: 3 }),
- ])('given the message %p', (message) => {
- beforeEach(() => {
- createWrapper(message);
- });
-
- it('interpolates correctly', () => {
- expect(wrapper.element).toMatchSnapshot();
- });
- });
-});