debian-mirror-gitlab/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js
2022-01-26 12:08:38 +05:30

35 lines
899 B
JavaScript

import { GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import Component from '~/projects/pipelines/charts/components/statistics_list.vue';
import { counts } from '../mock_data';
describe('StatisticsList', () => {
let wrapper;
const failedPipelinesLink = '/flightjs/Flight/-/pipelines?page=1&scope=all&status=failed';
const findFailedPipelinesLink = () => wrapper.findComponent(GlLink);
beforeEach(() => {
wrapper = shallowMount(Component, {
provide: {
failedPipelinesLink,
},
propsData: {
counts,
},
});
});
afterEach(() => {
wrapper.destroy();
});
it('displays the counts data with labels', () => {
expect(wrapper.element).toMatchSnapshot();
});
it('displays failed pipelines link', () => {
expect(findFailedPipelinesLink().attributes('href')).toBe(failedPipelinesLink);
});
});