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