summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/__snapshots__/integration_help_text_spec.js.snap
blob: df0fcf5da1c8997d6d3a77a97820f35bb3fa17b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>
`;