summaryrefslogtreecommitdiff
path: root/spec/frontend/jira_import/components/jira_import_setup_spec.js
blob: aa94dc4f5039a7b927582d56e2e3f3c2193ef963 (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
import { GlEmptyState } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import JiraImportSetup from '~/jira_import/components/jira_import_setup.vue';

const illustration = 'illustration.svg';
const jiraIntegrationPath = 'gitlab-org/gitlab-test/-/services/jira/edit';

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

  const getGlEmptyStateProp = attribute => wrapper.find(GlEmptyState).props(attribute);

  beforeEach(() => {
    wrapper = shallowMount(JiraImportSetup, {
      propsData: {
        illustration,
        jiraIntegrationPath,
      },
    });
  });

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

  it('contains illustration', () => {
    expect(getGlEmptyStateProp('svgPath')).toBe(illustration);
  });

  it('contains a description', () => {
    const description = 'You will first need to set up Jira Integration to use this feature.';
    expect(getGlEmptyStateProp('description')).toBe(description);
  });

  it('contains button text', () => {
    expect(getGlEmptyStateProp('primaryButtonText')).toBe('Set up Jira Integration');
  });

  it('contains button link', () => {
    expect(getGlEmptyStateProp('primaryButtonLink')).toBe(jiraIntegrationPath);
  });
});