summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap')
-rw-r--r--spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap27
1 files changed, 27 insertions, 0 deletions
diff --git a/spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap b/spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap
new file mode 100644
index 00000000000..df0fcf5da1c
--- /dev/null
+++ b/spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap
@@ -0,0 +1,27 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`IntegrationHelpText component should not render the link when start and end is not provided 1`] = `
+<span>
+ Click nowhere!
+</span>
+`;
+
+exports[`IntegrationHelpText component should render the help text 1`] = `
+<span>
+ Click
+ <gl-link-stub
+ href="http://bar.com"
+ target="_blank"
+ >
+
+ Bar
+
+ <gl-icon-stub
+ class="gl-vertical-align-middle"
+ name="external-link"
+ size="12"
+ />
+ </gl-link-stub>
+ !
+</span>
+`;