summaryrefslogtreecommitdiff
path: root/spec/frontend/blob/pipeline_tour_success_spec.js
blob: f6783b31a73348ccd0892f22df8162a37ef2ef3e (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
import pipelineTourSuccess from '~/blob/pipeline_tour_success_modal.vue';
import { shallowMount } from '@vue/test-utils';
import Cookies from 'js-cookie';
import { GlSprintf, GlModal } from '@gitlab/ui';

describe('PipelineTourSuccessModal', () => {
  let wrapper;
  let cookieSpy;
  const goToPipelinesPath = 'some_pipeline_path';
  const commitCookie = 'some_cookie';

  beforeEach(() => {
    wrapper = shallowMount(pipelineTourSuccess, {
      propsData: {
        goToPipelinesPath,
        commitCookie,
      },
    });

    cookieSpy = jest.spyOn(Cookies, 'remove');
  });

  afterEach(() => {
    wrapper.destroy();
  });

  it('has expected structure', () => {
    const modal = wrapper.find(GlModal);
    const sprintf = modal.find(GlSprintf);

    expect(modal.attributes('title')).toContain("That's it, well done!");
    expect(sprintf.exists()).toBe(true);
  });

  it('calls to remove cookie', () => {
    wrapper.vm.disableModalFromRenderingAgain();

    expect(cookieSpy).toHaveBeenCalledWith(commitCookie);
  });
});