summaryrefslogtreecommitdiff
path: root/spec/frontend/integrations/edit/components/jira_upgrade_cta_spec.js
blob: e90e9a5d2ace857ae3d2e5f066f665d6c0420547 (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
import { shallowMount } from '@vue/test-utils';

import JiraUpgradeCta from '~/integrations/edit/components/jira_upgrade_cta.vue';

describe('JiraUpgradeCta', () => {
  let wrapper;

  const contentMessage = 'Upgrade your plan to enable this feature of the Jira Integration.';

  const createComponent = (propsData) => {
    wrapper = shallowMount(JiraUpgradeCta, {
      propsData,
    });
  };

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

  it('displays the correct message for premium and lower users', () => {
    createComponent({ showPremiumMessage: true });
    expect(wrapper.text()).toContain('This is a Premium feature');
    expect(wrapper.text()).toContain(contentMessage);
  });

  it('displays the correct message for ultimate and lower users', () => {
    createComponent({ showUltimateMessage: true });
    expect(wrapper.text()).toContain('This is an Ultimate feature');
    expect(wrapper.text()).toContain(contentMessage);
  });
});