blob: 174a3202bee9b3d046cdb3ebf3402c16950d08c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Verify LoopLogs Test the render method 1`] = `
<styled.div>
<label>
Loop Logs
</label>
<Styled(Bootstrap(Table))
hover={true}
responsive={true}
striped={true}
variant={true}
>
<thead>
<tr>
<th>
<span
align="left"
>
Date
</span>
</th>
<th>
<span
align="left"
>
Type
</span>
</th>
<th>
<span
align="left"
>
Component
</span>
</th>
<th>
<span
align="right"
>
Log
</span>
</th>
</tr>
</thead>
<tbody>
<TableRow
logRow={
Object {
"id": 1,
"logComponent": "CLAMP",
"logInstant": "2019-07-08T09:44:37Z",
"logType": "INFO",
"message": "Operational and Guard policies UPDATED",
}
}
/>
</tbody>
</Styled(Bootstrap(Table))>
</styled.div>
`;
|