summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/explorer/components/details_page/details_row_spec.js
blob: 95b8e18d677449967d1575cf08edb7e530ed2a7a (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
import { shallowMount } from '@vue/test-utils';
import { GlIcon } from '@gitlab/ui';
import component from '~/registry/explorer/components/details_page/details_row.vue';

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

  const findIcon = () => wrapper.find(GlIcon);
  const findDefaultSlot = () => wrapper.find('[data-testid="default-slot"]');

  const mountComponent = () => {
    wrapper = shallowMount(component, {
      propsData: {
        icon: 'clock',
      },
      slots: {
        default: '<div data-testid="default-slot"></div>',
      },
    });
  };

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

  it('contains an icon', () => {
    mountComponent();
    expect(findIcon().exists()).toBe(true);
  });

  it('icon has the correct props', () => {
    mountComponent();
    expect(findIcon().props()).toMatchObject({
      name: 'clock',
    });
  });

  it('has a default slot', () => {
    mountComponent();
    expect(findDefaultSlot().exists()).toBe(true);
  });
});