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

duration_badge_spec.js « log « components « jobs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84dae386bdbec4fb6c0913fcbe3041a00cc01bb0 (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
import { shallowMount } from '@vue/test-utils';
import DurationBadge from '~/jobs/components/log/duration_badge.vue';

describe('Job Log Duration Badge', () => {
  let wrapper;

  const data = {
    duration: '00:30:01',
  };

  const createComponent = (props = {}) => {
    wrapper = shallowMount(DurationBadge, {
      propsData: {
        ...props,
      },
    });
  };

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

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

  it('renders provided duration', () => {
    expect(wrapper.text()).toBe(data.duration);
  });
});