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

mr_widget_author_time_spec.js « components « vue_merge_request_widget « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90a29d154883783b386bc8237c090b7d267e0d89 (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
import { shallowMount } from '@vue/test-utils';
import MrWidgetAuthor from '~/vue_merge_request_widget/components/mr_widget_author.vue';
import MrWidgetAuthorTime from '~/vue_merge_request_widget/components/mr_widget_author_time.vue';

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

  const defaultProps = {
    actionText: 'Merged by',
    author: {
      name: 'Administrator',
      username: 'root',
      webUrl: 'http://localhost:3000/root',
      avatarUrl: 'http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon',
    },
    dateTitle: '2017-03-23T23:02:00.807Z',
    dateReadable: '12 hours ago',
  };

  beforeEach(() => {
    wrapper = shallowMount(MrWidgetAuthorTime, {
      propsData: defaultProps,
    });
  });

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

  it('renders provided action text', () => {
    expect(wrapper.text()).toContain('Merged by');
  });

  it('renders author', () => {
    expect(wrapper.findComponent(MrWidgetAuthor).props('author')).toStrictEqual(
      defaultProps.author,
    );
  });

  it('renders provided time', () => {
    expect(wrapper.find('time').attributes('title')).toBe('2017-03-23T23:02:00.807Z');

    expect(wrapper.find('time').text().trim()).toBe('12 hours ago');
  });
});