summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/reports/summary_row_spec.js
blob: ac076f05bc087389e31b9efef042aac26257dfdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import Vue from 'vue';
import component from '~/vue_shared/components/reports/summary_row.vue';
import mountComponent from 'spec/helpers/vue_mount_component_helper';

describe('Summary row', () => {
  const Component = Vue.extend(component);
  let vm;

  const props = {
    summary: 'SAST detected 1 new vulnerability and 1 fixed vulnerability',
    popoverOptions: {
      title: 'Static Application Security Testing (SAST)',
      content: '<a>Learn more about SAST</a>',
    },
    statusIcon: 'warning',
  };

  beforeEach(() => {
    vm = mountComponent(Component, props);
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('renders provided summary', () => {
    expect(
      vm.$el.querySelector('.report-block-list-issue-description-text').textContent.trim(),
    ).toEqual(props.summary);
  });

  it('renders provided icon', () => {
    expect(vm.$el.querySelector('.report-block-list-icon span').classList).toContain(
      'js-ci-status-icon-warning',
    );
  });
});