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

last_commit_spec.js.snap « __snapshots__ « components « repository « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb56f392ec90f346bf3230fd4ae600efa1bf724f (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Repository last commit component renders commit widget 1`] = `
<div
  class="well-segment commit gl-p-5 gl-w-full gl-display-flex"
>
  <user-avatar-link-stub
    class="gl-my-2 gl-mr-4"
    imgalt=""
    imgcssclasses="gl-mr-0!"
    imgsize="32"
    imgsrc="https://test.com"
    linkhref="/test"
    tooltipplacement="top"
    tooltiptext=""
    username=""
  />
   
  <div
    class="commit-detail flex-list gl-display-flex gl-justify-content-space-between gl-align-items-flex-start gl-flex-grow-1 gl-min-w-0"
  >
    <div
      class="commit-content qa-commit-content"
    >
      <gl-link-stub
        class="commit-row-message item-title"
        href="/commit/123"
      >
        Commit title
      </gl-link-stub>
       
      <!---->
       
      <div
        class="committer"
      >
        <gl-link-stub
          class="commit-author-link js-user-link"
          href="/test"
        >
          
            Test
        </gl-link-stub>
        
          authored
          
        <timeago-tooltip-stub
          cssclass=""
          time="2019-01-01"
          tooltipplacement="bottom"
        />
      </div>
       
      <!---->
    </div>
     
    <div
      class="gl-flex-grow-1"
    />
     
    <div
      class="commit-actions gl-display-flex gl-flex-align gl-align-items-center gl-flex-direction-row"
    >
      <!---->
       
      <div
        class="ci-status-link"
      >
        <gl-link-stub
          class="js-commit-pipeline"
          href="https://test.com/pipeline"
          title="Pipeline: failed"
        >
          <ci-icon-stub
            aria-label="Pipeline: failed"
            cssclasses=""
            size="24"
            status="[object Object]"
          />
        </gl-link-stub>
      </div>
       
      <gl-button-group-stub
        class="gl-ml-4 js-commit-sha-group"
      >
        <gl-button-stub
          buttontextclasses=""
          category="primary"
          class="gl-font-monospace"
          data-testid="last-commit-id-label"
          icon=""
          label="true"
          size="medium"
          variant="default"
        >
          12345678
        </gl-button-stub>
         
        <clipboard-button-stub
          category="secondary"
          class="input-group-text"
          size="medium"
          text="123456789"
          title="Copy commit SHA"
          tooltipplacement="top"
          variant="default"
        />
      </gl-button-group-stub>
    </div>
  </div>
</div>
`;