summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/mr_widget_author_time_spec.js
blob: 6784b498c29e3a5f82b2ab8873f3067b3ab3a324 (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 Vue from 'vue';
import authorTimeComponent from '~/vue_merge_request_widget/components/mr_widget_author_time.vue';
import mountComponent from 'spec/helpers/vue_mount_component_helper';

describe('MRWidgetAuthorTime', () => {
  let vm;

  beforeEach(() => {
    const Component = Vue.extend(authorTimeComponent);

    vm = mountComponent(Component, {
      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',
    });
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('renders provided action text', () => {
    expect(vm.$el.textContent).toContain('Merged by');
  });

  it('renders author', () => {
    expect(vm.$el.textContent).toContain('Administrator');
  });

  it('renders provided time', () => {
    expect(vm.$el.querySelector('time').getAttribute('title')).toEqual('2017-03-23T23:02:00.807Z');
    expect(vm.$el.querySelector('time').textContent.trim()).toEqual('12 hours ago');
  });
});