]> source.dussan.org Git - sonarqube.git/blob
abd7d3a63ace6321ffa6ca3588a59f9a6d0ac6ee
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should support more than two nodes 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         "Logs Level": "INFO",
38         "Name": "Bar",
39       }
40     }
41   />
42   <li
43     className="note system-info-health-title"
44   >
45     system.search_nodes_title
46   </li>
47   <HealthCard
48     health="YELLOW"
49     healthCauses={Array []}
50     name="Baz"
51     onClick={[Function]}
52     open={false}
53     sysInfoData={
54       Object {
55         "Logs Level": "INFO",
56         "Name": "Baz",
57       }
58     }
59   />
60 </ul>
61 `;