]> source.dussan.org Git - sonarqube.git/blob
a37d9e497f5ffd7fcad925eec2cf2f835a2d70ec
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`renders correctly for a search 1`] = `
4 <thead>
5   <tr
6     className="code-components-header"
7   >
8     <th
9       className="thin nowrap"
10       colSpan={2}
11     />
12     <th />
13     <th
14       className=""
15     />
16   </tr>
17 </thead>
18 `;
19
20 exports[`renders correctly for leak 1`] = `
21 <thead>
22   <tr
23     className="code-components-header"
24   >
25     <th
26       className="thin nowrap"
27       colSpan={2}
28     />
29     <th />
30     <th
31       className="thin nowrap text-right leak"
32       key="metric.foo.name"
33     >
34       metric.foo.name
35     </th>
36     <th
37       className="thin nowrap text-right code-components-cell leak"
38       key="metric.bar.name"
39     >
40       metric.bar.name
41     </th>
42     <th
43       className="leak"
44     />
45   </tr>
46 </thead>
47 `;
48
49 exports[`renders correctly for portfolios 1`] = `
50 <thead>
51   <tr
52     className="code-components-header"
53   >
54     <th
55       className="thin nowrap"
56       colSpan={2}
57     />
58     <th />
59     <th
60       className="thin nowrap text-right"
61       key="metric_domain.Releasability"
62     >
63       metric_domain.Releasability
64     </th>
65     <th
66       className="thin nowrap text-right code-components-cell"
67       key="metric_domain.Reliability"
68     >
69       metric_domain.Reliability
70     </th>
71     <th
72       className="thin nowrap text-right code-components-cell"
73       key="metric_domain.Security"
74     >
75       metric_domain.Security
76     </th>
77     <th
78       className="thin nowrap text-right code-components-cell"
79       key="metric_domain.Maintainability"
80     >
81       metric_domain.Maintainability
82     </th>
83     <th
84       className="thin nowrap text-right code-components-cell"
85       key="metric.ncloc.name"
86     >
87       metric.ncloc.name
88     </th>
89     <th
90       className=""
91     />
92   </tr>
93 </thead>
94 `;
95
96 exports[`renders correctly for projects 1`] = `
97 <thead>
98   <tr
99     className="code-components-header"
100   >
101     <th
102       className="thin nowrap"
103       colSpan={2}
104     />
105     <th />
106     <th
107       className="thin nowrap text-right"
108       key="metric.foo.name"
109     >
110       metric.foo.name
111     </th>
112     <th
113       className="thin nowrap text-right code-components-cell"
114       key="metric.bar.name"
115     >
116       metric.bar.name
117     </th>
118     <th
119       className=""
120     />
121   </tr>
122 </thead>
123 `;