]> source.dussan.org Git - sonarqube.git/blob
1c660cd406e745ed848c7da5d9b106b7bcf44998
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly a legend 1`] = `
4 <span
5   className=""
6 >
7   <ChartLegendIcon
8     className="spacer-right line-chart-legend line-chart-legend-2"
9   />
10   Bugs
11 </span>
12 `;
13
14 exports[`should render correctly an actionable legend 1`] = `
15 <span
16   className="project-activity-graph-legend-actionable myclass"
17 >
18   <ChartLegendIcon
19     className="spacer-right line-chart-legend line-chart-legend-1"
20   />
21   Foo
22   <a
23     className="spacer-left button-clean text-text-top"
24     href="#"
25     onClick={[Function]}
26   >
27     <CloseIcon
28       className="text-danger"
29     />
30   </a>
31 </span>
32 `;
33
34 exports[`should render correctly legends with warning 1`] = `
35 <span
36   className="alert-warning myclass"
37 >
38   <AlertWarnIcon
39     className="spacer-right"
40   />
41   Foo
42 </span>
43 `;