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

stub_transition.js « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cddb432a6338d85faa9f1dcc4dfeff33df24141 (plain)
1
2
3
4
5
6
7
8
export function stubTransition() {
  return {
    render() {
      // eslint-disable-next-line no-underscore-dangle
      return this.$options._renderChildren;
    },
  };
}