]> source.dussan.org Git - sonarqube.git/blob
d374734cb547be6159a1bb21a1e237a1fa754eb9
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly a legend: default 1`] = `
4 <span
5   className=""
6 >
7   <ChartLegendIcon
8     className="text-middle spacer-right"
9     index={2}
10   />
11   <span
12     className="text-middle"
13   >
14     Bugs
15   </span>
16 </span>
17 `;
18
19 exports[`should render correctly a legend: with legend 1`] = `
20 <span
21   className="activity-graph-legend-actionable myclass"
22 >
23   <ChartLegendIcon
24     className="text-middle spacer-right"
25     index={1}
26   />
27   <span
28     className="text-middle"
29   >
30     Foo
31   </span>
32   <ClearButton
33     className="button-tiny spacer-left text-middle"
34     iconProps={
35       Object {
36         "size": 12,
37       }
38     }
39     onClick={[Function]}
40   />
41 </span>
42 `;
43
44 exports[`should render correctly a legend: with warning 1`] = `
45 <span
46   className=""
47 >
48   <AlertWarnIcon
49     className="spacer-right"
50   />
51   <span
52     className="text-middle"
53   >
54     Bugs
55   </span>
56 </span>
57 `;