]> source.dussan.org Git - sonarqube.git/blob
f962437404c374c88db67e012386c912528f5c29
[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={
31       Object {
32         "message": "foo",
33       }
34     }
35   />
36   <StatusIndicator
37     color="red"
38     size="big"
39   />
40 </div>
41 `;
42
43 exports[`should render multiple health causes 1`] = `
44 <div
45   className="system-info-health-info"
46 >
47   <HealthCauseItem
48     className="spacer-right"
49     health="YELLOW"
50     healthCause={
51       Object {
52         "message": "foo",
53       }
54     }
55   />
56   <HealthCauseItem
57     className="spacer-right"
58     health="YELLOW"
59     healthCause={
60       Object {
61         "message": "bar",
62       }
63     }
64   />
65   <StatusIndicator
66     color="yellow"
67   />
68 </div>
69 `;