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

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

exports[`packages_list_row renders 1`] = `
<div
  class="gl-responsive-table-row"
  data-qa-selector="packages-row"
>
  <div
    class="table-section section-50 d-flex flex-md-column justify-content-between flex-wrap"
  >
    <div
      class="d-flex align-items-center mr-2"
    >
      <gl-link-stub
        class="text-dark font-weight-bold mb-md-1"
        data-qa-selector="package_link"
        href="foo"
      >
        
        Test package
      
      </gl-link-stub>
       
      <!---->
    </div>
     
    <div
      class="d-flex text-secondary text-truncate mt-md-2"
    >
      <span>
        1.0.0
      </span>
       
      <!---->
       
      <div
        class="d-flex align-items-center"
      >
        <gl-icon-stub
          class="text-secondary ml-2 mr-1"
          name="review-list"
          size="16"
        />
         
        <gl-link-stub
          class="text-secondary"
          data-testid="packages-row-project"
          href="/foo/bar/baz"
        >
          
        </gl-link-stub>
      </div>
       
      <div
        class="d-flex align-items-center"
        data-testid="package-type"
      >
        <gl-icon-stub
          class="text-secondary ml-2 mr-1"
          name="package"
          size="16"
        />
         
        <span>
          Maven
        </span>
      </div>
    </div>
  </div>
   
  <div
    class="table-section d-flex flex-md-column justify-content-between align-items-md-end section-40"
  >
    <publish-method-stub
      packageentity="[object Object]"
    />
     
    <div
      class="text-secondary order-0 order-md-1 mt-md-2"
    >
      <gl-sprintf-stub
        message="Created %{timestamp}"
      />
    </div>
  </div>
   
  <div
    class="table-section section-10 d-flex justify-content-end"
  >
    <gl-button-stub
      aria-label="Remove package"
      category="primary"
      data-testid="action-delete"
      icon="remove"
      size="medium"
      title="Remove package"
      variant="danger"
    />
  </div>
</div>
`;