Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jira_import_setup_spec.js « components « jira_import « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 834c14b512e9408ab2b80e3965c5536852543a86 (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
import { GlEmptyState } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import JiraImportSetup from '~/jira_import/components/jira_import_setup.vue';

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

  const getGlEmptyStateAttribute = attribute => wrapper.find(GlEmptyState).attributes(attribute);

  beforeEach(() => {
    wrapper = shallowMount(JiraImportSetup, {
      propsData: {
        illustration: 'illustration.svg',
      },
    });
  });

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

  it('contains illustration', () => {
    expect(getGlEmptyStateAttribute('svgpath')).toBe('illustration.svg');
  });

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

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