import RealDeleteModal from '~/registry/explorer/components/details_page/delete_modal.vue';
import RealListItem from '~/registry/explorer/components/list_item.vue';
export const GlModal = {
template: '
',
methods: {
show: jest.fn(),
},
};
export const GlEmptyState = {
template: '
',
name: 'GlEmptyStateSTub',
};
export const RouterLink = {
template: `
`,
props: ['to'],
};
export const DeleteModal = {
template: '',
methods: {
show: jest.fn(),
},
props: RealDeleteModal.props,
};
export const GlSkeletonLoader = {
template: `
`,
props: ['width', 'height'],
};
export const ListItem = {
...RealListItem,
data() {
return {
detailsSlots: [],
isDetailsShown: true,
};
},
};