]> source.dussan.org Git - sonarqube.git/blob
71b89ced18e9af2feda57371ceb9a501209ac412
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <tr
5   className="project-activity-graph-tooltip-overview-line"
6 >
7   <td
8     className="thin"
9   >
10     <ChartLegendIcon
11       className="spacer-right line-chart-legend line-chart-legend-2"
12     />
13   </td>
14   <td
15     className="text-right spacer-right thin"
16   >
17     <span
18       className="project-activity-graph-tooltip-value"
19     >
20       1.2k
21     </span>
22     <Rating
23       className="spacer-left"
24       muted={false}
25       small={true}
26       value="5.0"
27     />
28   </td>
29   <td>
30     Bugs
31   </td>
32 </tr>
33 `;
34
35 exports[`should render correctly when rating data is missing 1`] = `
36 <tr
37   className="project-activity-graph-tooltip-overview-line"
38 >
39   <td
40     className="thin"
41   >
42     <ChartLegendIcon
43       className="spacer-right line-chart-legend line-chart-legend-2"
44     />
45   </td>
46   <td
47     className="text-right spacer-right thin"
48   >
49     <span
50       className="project-activity-graph-tooltip-value"
51     >
52       500
53     </span>
54   </td>
55   <td>
56     Bugs
57   </td>
58 </tr>
59 `;