summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/explorer/stubs.js
blob: 2c2c7587af95819d22c383052149ce0a65564a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const GlModal = {
  template: '<div><slot name="modal-title"></slot><slot></slot><slot name="modal-ok"></slot></div>',
  methods: {
    show: jest.fn(),
  },
};

export const GlEmptyState = {
  template: '<div><slot name="description"></slot></div>',
  name: 'GlEmptyStateSTub',
};