]> source.dussan.org Git - sonarqube.git/blob
c939658a2738fad697c1e24d98551ac275579fd0
[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       hotspots.status_option.TO_REVIEW
43     </div>
44   </h3>
45   <div
46     className="little-spacer-top"
47   >
48     hotspots.status_option.TO_REVIEW.description
49   </div>
50 </Styled(div)>
51 `;