import Vue from 'vue'; import mountComponent from 'spec/helpers/vue_mount_component_helper'; import component from '~/reports/components/summary_row.vue'; 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: 'Learn more about SAST', }, 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', ); }); });