Merge "Improve unit test coverage of ToscaYamlToJsonConvertor"
[clamp.git] / ui-react / src / components / loop_viewer / status / __snapshots__ / LoopStatus.test.js.snap
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify LoopStatus Test the render method 1`] = `
4 <styled.div>
5   <label>
6     Loop Status: 
7     DESIGN
8   </label>
9   <div>
10     <Styled(Bootstrap(Table))
11       hover={true}
12       responsive={true}
13       striped={true}
14       variant={true}
15     >
16       <thead>
17         <tr>
18           <th>
19             <span
20               align="left"
21             >
22               Component Name
23             </span>
24           </th>
25           <th>
26             <span
27               align="left"
28             >
29               Component State
30             </span>
31           </th>
32           <th>
33             <span
34               align="right"
35             >
36               Description
37             </span>
38           </th>
39         </tr>
40       </thead>
41       <tbody>
42         <TableRow
43           statusRow={
44             Object {
45               "componentName": "POLICY",
46               "description": "The policies defined have NOT yet been created on the policy engine",
47               "stateName": "NOT_SENT",
48             }
49           }
50         />
51         <TableRow
52           statusRow={
53             Object {
54               "componentName": "DCAE",
55               "description": "The DCAE blueprint has been found in the DCAE inventory but not yet instancianted for this loop",
56               "stateName": "BLUEPRINT_DEPLOYED",
57             }
58           }
59         />
60       </tbody>
61     </Styled(Bootstrap(Table))>
62   </div>
63 </styled.div>
64 `;