]> source.dussan.org Git - sonarqube.git/blob
f4961aeac1e135e974785ff158d0530f39836d9f
[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={false}
18     sysInfoData={
19       Object {
20         "Logs Level": "DEBUG",
21         "Name": "Foo",
22       }
23     }
24   />
25   <HealthCard
26     name="Web"
27     onClick={[Function]}
28     open={false}
29     sysInfoData={
30       Object {
31         "Web Database Connectivity": undefined,
32         "Web JVM": Object {
33           "Max Memory": "2Gb",
34         },
35         "Web JVM Properties": undefined,
36       }
37     }
38   />
39   <HealthCard
40     name="Compute Engine"
41     onClick={[Function]}
42     open={true}
43     sysInfoData={
44       Object {
45         "Compute Engine JVM": undefined,
46         "Compute Engine JVM Properties": undefined,
47         "Pending": 4,
48       }
49     }
50   />
51   <HealthCard
52     name="Search"
53     onClick={[Function]}
54     open={false}
55     sysInfoData={
56       Object {
57         "Elasticsearch": Object {
58           "Number of Nodes": 1,
59         },
60         "Search JVM": undefined,
61         "Search JVM Properties": undefined,
62       }
63     }
64   />
65 </ul>
66 `;