summaryrefslogtreecommitdiff
path: root/spec/frontend/ci/reports/components/report_item_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci/reports/components/report_item_spec.js')
-rw-r--r--spec/frontend/ci/reports/components/report_item_spec.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/spec/frontend/ci/reports/components/report_item_spec.js b/spec/frontend/ci/reports/components/report_item_spec.js
new file mode 100644
index 00000000000..d835d549531
--- /dev/null
+++ b/spec/frontend/ci/reports/components/report_item_spec.js
@@ -0,0 +1,34 @@
+import { shallowMount } from '@vue/test-utils';
+import { componentNames } from '~/ci/reports/components/issue_body';
+import IssueStatusIcon from '~/ci/reports/components/issue_status_icon.vue';
+import ReportItem from '~/ci/reports/components/report_item.vue';
+import { STATUS_SUCCESS } from '~/ci/reports/constants';
+
+describe('ReportItem', () => {
+ describe('showReportSectionStatusIcon', () => {
+ it('does not render CI Status Icon when showReportSectionStatusIcon is false', () => {
+ const wrapper = shallowMount(ReportItem, {
+ propsData: {
+ issue: { foo: 'bar' },
+ component: componentNames.CodequalityIssueBody,
+ status: STATUS_SUCCESS,
+ showReportSectionStatusIcon: false,
+ },
+ });
+
+ expect(wrapper.findComponent(IssueStatusIcon).exists()).toBe(false);
+ });
+
+ it('shows status icon when unspecified', () => {
+ const wrapper = shallowMount(ReportItem, {
+ propsData: {
+ issue: { foo: 'bar' },
+ component: componentNames.CodequalityIssueBody,
+ status: STATUS_SUCCESS,
+ },
+ });
+
+ expect(wrapper.findComponent(IssueStatusIcon).exists()).toBe(true);
+ });
+ });
+});