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

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

exports[`IDE pipeline stage renders stage details & icon 1`] = `
<div
  class="ide-stage card gl-mt-3"
>
  <div
    class="card-header"
  >
    <ci-icon-stub
      cssclasses=""
      size="24"
      status="[object Object]"
    />
     
    <strong
      class="gl-ml-3 text-truncate"
      data-container="body"
    >
      
      build
    
    </strong>
     
    <div
      class="gl-mr-3 gl-ml-2"
    >
      <span
        class="badge badge-pill"
      >
         4 
      </span>
    </div>
     
    <gl-icon-stub
      class="ide-stage-collapse-icon"
      name="angle-down"
      size="16"
    />
  </div>
   
  <div
    class="card-body p-0"
  >
    <item-stub
      job="[object Object]"
    />
    <item-stub
      job="[object Object]"
    />
    <item-stub
      job="[object Object]"
    />
    <item-stub
      job="[object Object]"
    />
  </div>
</div>
`;