debian-mirror-gitlab/spec/frontend/pipelines/graph/job_name_component_spec.js
2021-04-29 21:17:54 +05:30

31 lines
762 B
JavaScript

import { mount } from '@vue/test-utils';
import jobNameComponent from '~/pipelines/components/jobs_shared/job_name_component.vue';
import ciIcon from '~/vue_shared/components/ci_icon.vue';
describe('job name component', () => {
let wrapper;
const propsData = {
name: 'foo',
status: {
icon: 'status_success',
group: 'success',
},
};
beforeEach(() => {
wrapper = mount(jobNameComponent, {
propsData,
});
});
it('should render the provided name', () => {
expect(wrapper.text()).toBe(propsData.name);
});
it('should render an icon with the provided status', () => {
expect(wrapper.find(ciIcon).exists()).toBe(true);
expect(wrapper.find('.ci-status-icon-success').exists()).toBe(true);
});
});