gitlab-org--gitlab-foss/spec/frontend/__helpers__/stub_transition.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
174 B
JavaScript
Raw Normal View History

export function stubTransition() {
return {
render() {
// eslint-disable-next-line no-underscore-dangle
return this.$options._renderChildren;
},
};
}