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

empty_state_spec.js « details_page « components « explorer « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14b15945631b714ae4fa0760226769d6c9562a8a (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
import { GlEmptyState } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import component from '~/registry/explorer/components/details_page/empty_state.vue';
import {
  NO_TAGS_TITLE,
  NO_TAGS_MESSAGE,
  MISSING_OR_DELETED_IMAGE_TITLE,
  MISSING_OR_DELETED_IMAGE_MESSAGE,
} from '~/registry/explorer/constants';

describe('EmptyTagsState component', () => {
  let wrapper;

  const findEmptyState = () => wrapper.find(GlEmptyState);

  const mountComponent = (propsData) => {
    wrapper = shallowMount(component, {
      stubs: {
        GlEmptyState,
      },
      propsData,
    });
  };

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

  it('contains gl-empty-state', () => {
    mountComponent();
    expect(findEmptyState().exists()).toBe(true);
  });

  it.each`
    isEmptyImage | title                             | description
    ${false}     | ${NO_TAGS_TITLE}                  | ${NO_TAGS_MESSAGE}
    ${true}      | ${MISSING_OR_DELETED_IMAGE_TITLE} | ${MISSING_OR_DELETED_IMAGE_MESSAGE}
  `(
    'when isEmptyImage is $isEmptyImage has the correct props',
    ({ isEmptyImage, title, description }) => {
      mountComponent({
        noContainersImage: 'foo',
        isEmptyImage,
      });

      expect(findEmptyState().props()).toMatchObject({
        title,
        description,
        svgPath: 'foo',
      });
    },
  );
});