]> source.dussan.org Git - sonarqube.git/blob
20ed8d541f6e82e85503dacbe135d834afc9f0b9
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <ul>
5   <HealthCard
6     biggerHealth={true}
7     health="RED"
8     healthCauses={
9       Array [
10         Object {
11           "message": "Database down",
12         },
13       ]
14     }
15     name="System"
16     onClick={[Function]}
17     open={true}
18     sysInfoData={
19       Object {
20         "Name": "Foo",
21       }
22     }
23   />
24   <li
25     className="note system-info-health-title"
26   >
27     system.application_nodes_title
28   </li>
29   <HealthCard
30     health="GREEN"
31     healthCauses={Array []}
32     name="Bar"
33     onClick={[Function]}
34     open={false}
35     sysInfoData={
36       Object {
37         "Name": "Bar",
38       }
39     }
40   />
41   <li
42     className="note system-info-health-title"
43   >
44     system.search_nodes_title
45   </li>
46   <HealthCard
47     health="YELLOW"
48     healthCauses={Array []}
49     name="Baz"
50     onClick={[Function]}
51     open={false}
52     sysInfoData={
53       Object {
54         "Name": "Baz",
55       }
56     }
57   />
58 </ul>
59 `;