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

commit_pipeline_status_component_spec.js.snap « __snapshots__ « commit « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9199db69fede390e5122dd2bb858c2561ec2b575 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Commit pipeline status component when polling is not successful renders not found CI icon without loader 1`] = `
<div
  class="ci-status-link"
>
  <a>
    <ciicon-stub
      aria-label="Pipeline: not found"
      cssclasses=""
      data-container="body"
      data-original-title="Pipeline: not found"
      size="24"
      status="[object Object]"
      title=""
    />
  </a>
</div>
`;

exports[`Commit pipeline status component when polling is successful renders CI icon without loader 1`] = `
<div
  class="ci-status-link"
>
  <a
    href="/frontend-fixtures/pipelines-project/pipelines/47"
  >
    <ciicon-stub
      aria-label="Pipeline: pending"
      cssclasses=""
      data-container="body"
      data-original-title="Pipeline: pending"
      size="24"
      status="[object Object]"
      title=""
    />
  </a>
</div>
`;