]> source.dussan.org Git - sonarqube.git/blob
4cee8e008900c88a5ce3e0fb0ab1d023084b4735
[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         "Database down",
11       ]
12     }
13     name="System"
14     onClick={[Function]}
15     open={true}
16     sysInfoData={
17       Object {
18         "High Availability": true,
19         "Logs Level": "INFO",
20       }
21     }
22   />
23   <li
24     className="note system-info-health-title"
25   >
26     system.application_nodes_title
27   </li>
28   <HealthCard
29     health="GREEN"
30     healthCauses={Array []}
31     key="Bar"
32     name="Bar"
33     onClick={[Function]}
34     open={false}
35     sysInfoData={
36       Object {
37         "Compute Engine Logging": Object {
38           "Logs Level": "INFO",
39         },
40         "Web Logging": Object {
41           "Logs Level": "INFO",
42         },
43       }
44     }
45   />
46   <li
47     className="note system-info-health-title"
48   >
49     system.search_nodes_title
50   </li>
51   <HealthCard
52     health="YELLOW"
53     healthCauses={Array []}
54     key="Baz"
55     name="Baz"
56     onClick={[Function]}
57     open={false}
58     sysInfoData={
59       Object {
60         "Compute Engine Logging": Object {
61           "Logs Level": "INFO",
62         },
63         "Web Logging": Object {
64           "Logs Level": "INFO",
65         },
66       }
67     }
68   />
69 </ul>
70 `;