]> source.dussan.org Git - sonarqube.git/blob
eafb250bdd15b5fb2252871a109323bf92af59a5
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should not render health causes 1`] = `
4 <div
5   className="system-info-health-info"
6 >
7   <StatusIndicator
8     color="green"
9   />
10 </div>
11 `;
12
13 exports[`should not render health causes 2`] = `
14 <div
15   className="system-info-health-info"
16 >
17   <StatusIndicator
18     color="yellow"
19   />
20 </div>
21 `;
22
23 exports[`should render correctly 1`] = `
24 <div
25   className="system-info-health-info"
26 >
27   <HealthCauseItem
28     className="spacer-right"
29     health="RED"
30     healthCause="foo"
31   />
32   <StatusIndicator
33     color="red"
34     size="big"
35   />
36 </div>
37 `;
38
39 exports[`should render multiple health causes 1`] = `
40 <div
41   className="system-info-health-info"
42 >
43   <HealthCauseItem
44     className="spacer-right"
45     health="YELLOW"
46     healthCause="foo"
47   />
48   <HealthCauseItem
49     className="spacer-right"
50     health="YELLOW"
51     healthCause="bar"
52   />
53   <StatusIndicator
54     color="yellow"
55   />
56 </div>
57 `;