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

stub_component.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 455504505174ac01879df5118e4f9f545b3f216d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export function stubComponent(Component, options = {}) {
  return {
    props: Component.props,
    model: Component.model,
    // Do not render any slots/scoped slots except default
    // This differs from VTU behavior which renders all slots
    template: '<div><slot></slot></div>',
    // allows wrapper.find(Component) to work for stub
    $_vueTestUtils_original: Component,
    ...options,
  };
}