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

integration_help_text_spec.js.snap « __snapshots__ « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d630d23873fd8d3b3ff67b5cf27d5d71c105a556 (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
// 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>
`;