summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_merge_request_widget/components/approvals/approvals_summary_optional_spec.js
blob: e6fb049594725211cfe197f439b5713841cd58ce (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 { GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import ApprovalsSummaryOptional from '~/vue_merge_request_widget/components/approvals/approvals_summary_optional.vue';

const TEST_HELP_PATH = 'help/path';

describe('MRWidget approvals summary optional', () => {
  let wrapper;

  const createComponent = (props = {}) => {
    wrapper = shallowMount(ApprovalsSummaryOptional, {
      propsData: props,
    });
  };

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

  const findHelpLink = () => wrapper.findComponent(GlLink);

  describe('when can approve', () => {
    beforeEach(() => {
      createComponent({ canApprove: true, helpPath: TEST_HELP_PATH });
    });

    it('shows help link', () => {
      const link = findHelpLink();

      expect(link.exists()).toBe(true);
      expect(link.attributes('href')).toBe(TEST_HELP_PATH);
    });
  });

  describe('when cannot approve', () => {
    beforeEach(() => {
      createComponent({ canApprove: false, helpPath: TEST_HELP_PATH });
    });

    it('does not show help link', () => {
      expect(findHelpLink().exists()).toBe(false);
    });
  });
});