]> source.dussan.org Git - sonarqube.git/blob
ecea37594c9ea7e05b0edc5ba4023b33758dd986
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: application 1`] = `
4 <Fragment>
5   <h3>
6     metric.ncloc.name
7   </h3>
8   <div
9     className="display-flex-center"
10   >
11     <DrilldownLink
12       className="huge"
13       component="my-project"
14       metric="ncloc"
15     >
16       1
17     </DrilldownLink>
18     <span
19       className="spacer-left"
20     >
21       <SizeRating
22         value={1}
23       />
24     </span>
25     <span
26       className="huge-spacer-left display-inline-flex-center"
27     >
28       <DrilldownLink
29         component="my-project"
30         metric="projects"
31       >
32         <span
33           className="big"
34         >
35           1
36         </span>
37       </DrilldownLink>
38       <span
39         className="little-spacer-left text-muted"
40       >
41         metric.projects.name
42       </span>
43     </span>
44   </div>
45 </Fragment>
46 `;
47
48 exports[`should render correctly: project 1`] = `
49 <Fragment>
50   <h3>
51     metric.ncloc.name
52   </h3>
53   <div
54     className="display-flex-center"
55   >
56     <DrilldownLink
57       className="huge"
58       component="my-project"
59       metric="ncloc"
60     >
61       1
62     </DrilldownLink>
63     <span
64       className="spacer-left"
65     >
66       <SizeRating
67         value={1}
68       />
69     </span>
70   </div>
71 </Fragment>
72 `;