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

incident_tabs_spec.js « components « issue_show « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19f75345450eaf1ebd694970dcf72200919b6a87 (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
import { shallowMount } from '@vue/test-utils';
import { GlTab } from '@gitlab/ui';
import IncidentTabs from '~/issue_show/components/incident_tabs.vue';
import { descriptionProps } from '../mock_data';
import DescriptionComponent from '~/issue_show/components/description.vue';

describe('Incident Tabs component', () => {
  let wrapper;

  const mountComponent = () => {
    wrapper = shallowMount(IncidentTabs, {
      propsData: {
        ...descriptionProps,
      },
      stubs: {
        DescriptionComponent: true,
      },
    });
  };

  beforeEach(() => {
    mountComponent();
  });

  const findTabs = () => wrapper.findAll(GlTab);
  const findSummaryTab = () => findTabs().at(0);
  const findDescriptionComponent = () => wrapper.find(DescriptionComponent);

  describe('default state', () => {
    it('renders the summary tab', async () => {
      expect(findTabs()).toHaveLength(1);
      expect(findSummaryTab().exists()).toBe(true);
      expect(findSummaryTab().attributes('title')).toBe('Summary');
    });

    it('renders the description component', () => {
      expect(findDescriptionComponent().exists()).toBe(true);
    });

    it('passes all props to the description component', () => {
      expect(findDescriptionComponent().props()).toMatchObject(descriptionProps);
    });
  });
});