]> source.dussan.org Git - sonarqube.git/blob
f8686659326960282c8d50d50cff72b26c2549e2
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <tr>
5   <td>
6     <strong>
7       total
8     </strong>
9   </td>
10   <td
11     className="thin nowrap text-right"
12   >
13     <Link
14       onlyActiveOnIndex={false}
15       style={Object {}}
16       to="/organizations/foo/rules#qprofile=bar|activation=true"
17     >
18       <strong>
19         3
20       </strong>
21     </Link>
22   </td>
23   <td
24     className="thin nowrap text-right"
25   >
26     <Link
27       className="small text-muted"
28       onlyActiveOnIndex={false}
29       style={Object {}}
30       to="/organizations/foo/rules#qprofile=bar|activation=false"
31     >
32       <strong>
33         7
34       </strong>
35     </Link>
36   </td>
37 </tr>
38 `;
39
40 exports[`should render correctly if there is 0 rules 1`] = `
41 <tr>
42   <td>
43     <strong>
44       total
45     </strong>
46   </td>
47   <td
48     className="thin nowrap text-right"
49   >
50     <Link
51       onlyActiveOnIndex={false}
52       style={Object {}}
53       to="/coding_rules#qprofile=bar|activation=true"
54     >
55       <strong>
56         0
57       </strong>
58     </Link>
59   </td>
60   <td
61     className="thin nowrap text-right"
62   >
63     <span
64       className="note text-muted"
65     >
66       0
67     </span>
68   </td>
69 </tr>
70 `;
71
72 exports[`should render correctly if there is missing data 1`] = `
73 <tr>
74   <td>
75     <strong>
76       total
77     </strong>
78   </td>
79   <td
80     className="thin nowrap text-right"
81   >
82     <Link
83       onlyActiveOnIndex={false}
84       style={Object {}}
85       to="/coding_rules#qprofile=bar|activation=true"
86     >
87       <strong>
88         5
89       </strong>
90     </Link>
91   </td>
92   <td
93     className="thin nowrap text-right"
94   />
95 </tr>
96 `;
97
98 exports[`should render correctly if there is missing data 2`] = `
99 <tr>
100   <td>
101     <strong>
102       total
103     </strong>
104   </td>
105   <td
106     className="thin nowrap text-right"
107   />
108   <td
109     className="thin nowrap text-right"
110   />
111 </tr>
112 `;