blob: 275933ee8061d674f94bd663d435226b1e264b4c (
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
62
63
64
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Verify LoopStatus Test the render method 1`] = `
<styled.div>
<label>
Loop Status:
DESIGN
</label>
<div>
<Styled(Bootstrap(Table))
hover={true}
responsive={true}
striped={true}
variant={true}
>
<thead>
<tr>
<th>
<span
align="left"
>
Component Name
</span>
</th>
<th>
<span
align="left"
>
Component State
</span>
</th>
<th>
<span
align="right"
>
Description
</span>
</th>
</tr>
</thead>
<tbody>
<TableRow
statusRow={
Object {
"componentName": "POLICY",
"description": "The policies defined have NOT yet been created on the policy engine",
"stateName": "NOT_SENT",
}
}
/>
<TableRow
statusRow={
Object {
"componentName": "DCAE",
"description": "The DCAE blueprint has been found in the DCAE inventory but not yet instancianted for this loop",
"stateName": "BLUEPRINT_DEPLOYED",
}
}
/>
</tbody>
</Styled(Bootstrap(Table))>
</div>
</styled.div>
`;
|