478b88623ad38b51bffb64d25e99906a693536f6
[policy/gui.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify ChangeOrderStateModal renders correctly 1`] = `
4 <Styled(Modal)
5   backdrop="static"
6   keyboard={false}
7   onHide={[Function]}
8   show={true}
9   size="sm"
10 >
11   <ModalHeader
12     closeButton={true}
13     closeLabel="Close"
14   >
15     <ModalTitle>
16       Manage Instantiation
17     </ModalTitle>
18   </ModalHeader>
19   <div
20     style={
21       Object {
22         "padding": "5px 5px 0 5px",
23       }
24     }
25   >
26     <ModalBody>
27       <Container
28         fluid={false}
29       >
30         <Dropdown
31           navbar={false}
32           onSelect={[Function]}
33         >
34           <DropdownToggle
35             id="dropdown-basic"
36             variant="dark"
37           >
38             Select Order State
39           </DropdownToggle>
40           <DropdownMenu
41             align="left"
42             alignRight={false}
43             flip={true}
44           >
45             <DropdownItem
46               as={
47                 Object {
48                   "$$typeof": Symbol(react.forward_ref),
49                   "render": [Function],
50                 }
51               }
52               disabled={false}
53               eventKey="UNINITIALISED"
54             >
55               UNINITIALISED
56             </DropdownItem>
57             <DropdownItem
58               as={
59                 Object {
60                   "$$typeof": Symbol(react.forward_ref),
61                   "render": [Function],
62                 }
63               }
64               disabled={false}
65               eventKey="PASSIVE"
66             >
67               PASSIVE
68             </DropdownItem>
69             <DropdownItem
70               as={
71                 Object {
72                   "$$typeof": Symbol(react.forward_ref),
73                   "render": [Function],
74                 }
75               }
76               disabled={false}
77               eventKey="RUNNING"
78             >
79               RUNNING
80             </DropdownItem>
81           </DropdownMenu>
82         </Dropdown>
83       </Container>
84       <Styled(Alert)
85         show={false}
86         variant="danger"
87       >
88         Can't get instantiation ordered state:
89         <br />
90         {}
91       </Styled(Alert)>
92     </ModalBody>
93     <styled.div />
94   </div>
95   <ModalFooter>
96     <Button
97       active={false}
98       disabled={false}
99       onClick={[Function]}
100       variant="primary"
101     >
102       Save
103     </Button>
104     <Button
105       active={false}
106       disabled={false}
107       onClick={[Function]}
108       variant="secondary"
109     >
110       Close
111     </Button>
112   </ModalFooter>
113 </Styled(Modal)>
114 `;