summaryrefslogtreecommitdiff
path: root/spec/frontend/__mocks__/@gitlab/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/__mocks__/@gitlab/ui.js')
-rw-r--r--spec/frontend/__mocks__/@gitlab/ui.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/frontend/__mocks__/@gitlab/ui.js b/spec/frontend/__mocks__/@gitlab/ui.js
index ef97cb11424..7f893bf7ed7 100644
--- a/spec/frontend/__mocks__/@gitlab/ui.js
+++ b/spec/frontend/__mocks__/@gitlab/ui.js
@@ -17,3 +17,20 @@ export const GlTooltip = {
return h('div', this.$attrs, this.$slots.default);
},
};
+
+export const GlPopoverDirective = {
+ bind() {},
+};
+
+export const GlPopover = {
+ props: {
+ cssClasses: {
+ type: Array,
+ required: false,
+ default: () => [],
+ },
+ },
+ render(h) {
+ return h('div', this.$attrs, this.$slots.default);
+ },
+};