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

publish_method_spec.js.snap « __snapshots__ « shared « packages_and_registries « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f243799baec393c7a2e24429ffc819a330e34e7 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`publish_method renders 1`] = `
<div
  class="gl-display-flex gl-align-items-center"
>
  <gl-icon-stub
    class="gl-mr-2"
    name="git-merge"
    size="16"
  />
   
  <span
    class="gl-mr-2"
    data-testid="pipeline-ref"
  >
    branch-name
  </span>
   
  <gl-icon-stub
    class="gl-mr-2"
    name="commit"
    size="16"
  />
   
  <gl-link-stub
    class="gl-mr-2"
    data-testid="pipeline-sha"
    href="../commit/sha-baz"
  >
    sha-baz
  </gl-link-stub>
   
  <clipboard-button-stub
    category="tertiary"
    size="small"
    text="sha-baz"
    title="Copy commit SHA"
    tooltipplacement="top"
    variant="default"
  />
</div>
`;