summaryrefslogtreecommitdiff
path: root/spec/frontend/pipelines/graph/job_name_component_spec.js
blob: 3574b66403efc35274999f229537d5e5563b4559 (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
import { mount } from '@vue/test-utils';
import ciIcon from '~/vue_shared/components/ci_icon.vue';

import jobNameComponent from '~/pipelines/components/graph/job_name_component.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
        .find('.ci-status-text')
        .text()
        .trim(),
    ).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);
  });
});