summaryrefslogtreecommitdiff
path: root/spec/frontend/pages/projects/learn_gitlab/components/learn_gitlab_info_card_spec.js
blob: ad4bc826a9d7a99305320c9f1895a3cf7e87942a (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
import { shallowMount } from '@vue/test-utils';
import LearnGitlabInfoCard from '~/pages/projects/learn_gitlab/components/learn_gitlab_info_card.vue';

const defaultProps = {
  title: 'Create Repository',
  description: 'Some description',
  actionLabel: 'Create Repository now',
  url: 'https://example.com',
  completed: false,
  svg: 'https://example.com/illustration.svg',
};

describe('Learn GitLab Info Card', () => {
  let wrapper;

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

  const createWrapper = (props = {}) => {
    wrapper = shallowMount(LearnGitlabInfoCard, {
      propsData: { ...defaultProps, ...props },
    });
  };

  it('renders no icon when not completed', () => {
    createWrapper({ completed: false });

    expect(wrapper.find('[data-testid="completed-icon"]').exists()).toBe(false);
  });

  it('renders the completion icon when completed', () => {
    createWrapper({ completed: true });

    expect(wrapper.find('[data-testid="completed-icon"]').exists()).toBe(true);
  });

  it('renders no trial only when it is not required', () => {
    createWrapper();

    expect(wrapper.find('[data-testid="trial-only"]').exists()).toBe(false);
  });

  it('renders trial only when trial is required', () => {
    createWrapper({ trialRequired: true });

    expect(wrapper.find('[data-testid="trial-only"]').exists()).toBe(true);
  });

  it('renders completion icon when completed a trial-only feature', () => {
    createWrapper({ trialRequired: true, completed: true });

    expect(wrapper.find('[data-testid="trial-only"]').exists()).toBe(false);
    expect(wrapper.find('[data-testid="completed-icon"]').exists()).toBe(true);
  });
});