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

issue_card_inner_scoped_label_spec.js « components « boards « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53e670e76da5bb5cf6381c9e2707c7310c6fa134 (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
import { GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import IssueCardInnerScopedLabel from '~/boards/components/issue_card_inner_scoped_label.vue';

describe('IssueCardInnerScopedLabel Component', () => {
  let wrapper;

  beforeEach(() => {
    wrapper = shallowMount(IssueCardInnerScopedLabel, {
      propsData: {
        label: { title: 'Foo::Bar', description: 'Some Random Description' },
        labelStyle: { background: 'white', color: 'black' },
        scopedLabelsDocumentationLink: '/docs-link',
      },
    });
  });

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

  it('should render label title', () => {
    expect(wrapper.find('.color-label').text()).toBe('Foo::Bar');
  });

  it('should render question mark symbol', () => {
    expect(wrapper.find('.fa-question-circle').exists()).toBe(true);
  });

  it('should render label style provided', () => {
    const label = wrapper.find('.color-label');

    expect(label.attributes('style')).toContain('background: white;');
    expect(label.attributes('style')).toContain('color: black;');
  });

  it('should render the docs link', () => {
    expect(wrapper.find(GlLink).attributes('href')).toBe('/docs-link');
  });
});