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

sidebar_formatted_date_spec.js « date « components « sidebar « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbe01263dcd4ee17f34254eed0a9c98696de5c25 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { GlButton } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import SidebarFormattedDate from '~/sidebar/components/date/sidebar_formatted_date.vue';

describe('SidebarFormattedDate', () => {
  let wrapper;
  const findFormattedDate = () => wrapper.find("[data-testid='sidebar-date-value']");
  const findRemoveButton = () => wrapper.findComponent(GlButton);

  const createComponent = ({ hasDate = true } = {}) => {
    wrapper = shallowMount(SidebarFormattedDate, {
      provide: {
        canUpdate: true,
      },
      propsData: {
        formattedDate: 'Apr 15, 2021',
        hasDate,
        issuableType: 'issue',
        resetText: 'remove',
        isLoading: false,
        canDelete: true,
      },
    });
  };

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

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

  it('displays formatted date', () => {
    expect(findFormattedDate().text()).toBe('Apr 15, 2021');
  });

  describe('when issue has due date', () => {
    it('displays remove button', () => {
      expect(findRemoveButton().exists()).toBe(true);
      expect(findRemoveButton().children).toEqual(wrapper.props.resetText);
    });

    it('emits reset-date event on click on remove button', () => {
      findRemoveButton().vm.$emit('click');

      expect(wrapper.emitted('reset-date')).toEqual([[undefined]]);
    });
  });

  describe('when issuable has no due date', () => {
    beforeEach(() => {
      createComponent({
        hasDate: false,
      });
    });

    it('does not display remove button', () => {
      expect(findRemoveButton().exists()).toBe(false);
    });
  });
});