summaryrefslogtreecommitdiff
path: root/spec/frontend/cycle_analytics/banner_spec.js
blob: 0cae0298ceec4b50163f85c612e49a4ffc18b41e (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
import Vue from 'vue';
import mountComponent from 'helpers/vue_mount_component_helper';
import banner from '~/cycle_analytics/components/banner.vue';

describe('Value Stream Analytics banner', () => {
  let vm;

  beforeEach(() => {
    const Component = Vue.extend(banner);
    vm = mountComponent(Component, {
      documentationLink: 'path',
    });
  });

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

  it('should render value stream analytics information', () => {
    expect(vm.$el.querySelector('h4').textContent.trim()).toEqual(
      'Introducing Value Stream Analytics',
    );

    expect(
      vm.$el
        .querySelector('p')
        .textContent.trim()
        .replace(/[\r\n]+/g, ' '),
    ).toContain(
      'Value Stream Analytics gives an overview of how much time it takes to go from idea to production in your project.',
    );

    expect(vm.$el.querySelector('a').textContent.trim()).toEqual('Read more');

    expect(vm.$el.querySelector('a').getAttribute('href')).toEqual('path');
  });

  it('should emit an event when close button is clicked', () => {
    jest.spyOn(vm, '$emit').mockImplementation(() => {});

    vm.$el.querySelector('.js-ca-dismiss-button').click();

    expect(vm.$emit).toHaveBeenCalled();
  });
});