diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-12-17 15:10:41 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-12-17 15:10:41 +0000 |
commit | ef73ee020e96f39a109a16c4c6b018d8ea7cabc1 (patch) | |
tree | 97972e4a7522ba99152b4f75d03062aed48e7c1a /spec/frontend/helpers | |
parent | 4e8387dc14ea8fb054c413ea237cf9e2e04cee83 (diff) | |
download | gitlab-ce-ef73ee020e96f39a109a16c4c6b018d8ea7cabc1.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/helpers')
-rw-r--r-- | spec/frontend/helpers/stub_transition.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/frontend/helpers/stub_transition.js b/spec/frontend/helpers/stub_transition.js new file mode 100644 index 00000000000..9cddb432a63 --- /dev/null +++ b/spec/frontend/helpers/stub_transition.js @@ -0,0 +1,8 @@ +export function stubTransition() { + return { + render() { + // eslint-disable-next-line no-underscore-dangle + return this.$options._renderChildren; + }, + }; +} |