summaryrefslogtreecommitdiff
path: root/spec/javascripts/pipelines/empty_state_spec.js
blob: f12950b8fce9d71a1dbdab60dbc37f8f0f71d7f6 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import Vue from 'vue';
import emptyStateComp from '~/pipelines/components/empty_state.vue';
import mountComponent from '../helpers/vue_mount_component_helper';

describe('Pipelines Empty State', () => {
  let component;
  let EmptyStateComponent;

  beforeEach(() => {
    EmptyStateComponent = Vue.extend(emptyStateComp);

    component = mountComponent(EmptyStateComponent, {
      helpPagePath: 'foo',
      emptyStateSvgPath: 'foo',
      canSetCi: true,
    });
  });

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

  it('should render empty state SVG', () => {
    expect(component.$el.querySelector('.svg-content svg')).toBeDefined();
  });

  it('should render empty state information', () => {
    expect(component.$el.querySelector('h4').textContent).toContain('Build with confidence');

    expect(
      component.$el
        .querySelector('p')
        .innerHTML.trim()
        .replace(/\n+\s+/m, ' ')
        .replace(/\s\s+/g, ' '),
    ).toContain('Continuous Integration can help catch bugs by running your tests automatically,');

    expect(
      component.$el
        .querySelector('p')
        .innerHTML.trim()
        .replace(/\n+\s+/m, ' ')
        .replace(/\s\s+/g, ' '),
    ).toContain(
      'while Continuous Deployment can help you deliver code to your product environment',
    );
  });

  it('should render a link with provided help path', () => {
    expect(component.$el.querySelector('.js-get-started-pipelines').getAttribute('href')).toEqual(
      'foo',
    );

    expect(component.$el.querySelector('.js-get-started-pipelines').textContent).toContain(
      'Get started with Pipelines',
    );
  });
});