summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/explorer/stubs.js
blob: d6fba863ee04f6ccfd71e6a95c0527069b4d6de9 (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 {
  GlModal as RealGlModal,
  GlEmptyState as RealGlEmptyState,
  GlSkeletonLoader as RealGlSkeletonLoader,
} from '@gitlab/ui';
import { RouterLinkStub } from '@vue/test-utils';
import { stubComponent } from 'helpers/stub_component';
import RealDeleteModal from '~/registry/explorer/components/details_page/delete_modal.vue';
import RealListItem from '~/vue_shared/components/registry/list_item.vue';

export const GlModal = stubComponent(RealGlModal, {
  template: '<div><slot name="modal-title"></slot><slot></slot><slot name="modal-ok"></slot></div>',
  methods: {
    show: jest.fn(),
  },
});

export const GlEmptyState = stubComponent(RealGlEmptyState, {
  template: '<div><slot name="description"></slot></div>',
});

export const RouterLink = RouterLinkStub;

export const DeleteModal = stubComponent(RealDeleteModal, {
  methods: {
    show: jest.fn(),
  },
});

export const GlSkeletonLoader = stubComponent(RealGlSkeletonLoader);

export const ListItem = {
  ...RealListItem,
  data() {
    return {
      detailsSlots: [],
      isDetailsShown: true,
    };
  },
};