]> source.dussan.org Git - sonarqube.git/blob
a2062714e3bc9b8996afac4ce0c0f5ee75e16206
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <Styled(div)>
5   <h3>
6     <div
7       className="badge"
8     >
9       hotspots.status_option.TO_REVIEW
10     </div>
11   </h3>
12   <div
13     className="little-spacer-top"
14   >
15     hotspots.status_option.TO_REVIEW.description
16   </div>
17 </Styled(div)>
18 `;
19
20 exports[`should render correctly: with title 1`] = `
21 <Styled(div)>
22   <h3>
23     status: 
24     <div
25       className="badge"
26     >
27       hotspots.status_option.TO_REVIEW
28     </div>
29   </h3>
30   <div
31     className="little-spacer-top"
32   >
33     hotspots.status_option.TO_REVIEW.description
34   </div>
35 </Styled(div)>
36 `;
37
38 exports[`should render correctly: without status in badge 1`] = `
39 <Styled(div)>
40   <h3>
41     <div
42       className=""
43     >
44       hotspots.status_option.TO_REVIEW
45     </div>
46   </h3>
47   <div
48     className="little-spacer-top"
49   >
50     hotspots.status_option.TO_REVIEW.description
51   </div>
52 </Styled(div)>
53 `;