Draft of React test
[clamp.git] / ui-react / src / components / dialogs / OpenLoop / __snapshots__ / OpenLoopModal.test.js.snap
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify OpenLoopModal Test the render method 1`] = `
4 <Styled(Bootstrap(Modal))
5   onHide={[Function]}
6   show={true}
7   size="lg"
8 >
9   <ModalHeader
10     closeButton={true}
11     closeLabel="Close"
12   >
13     <ModalTitle>
14       Open Model
15     </ModalTitle>
16   </ModalHeader>
17   <ModalBody>
18     <FormGroup
19       as={
20         Object {
21           "$$typeof": Symbol(react.forward_ref),
22           "defaultProps": Object {
23             "noGutters": false,
24           },
25           "render": [Function],
26         }
27       }
28       controlId="formPlaintextEmail"
29     >
30       <FormLabel
31         column={true}
32         sm="2"
33         srOnly={false}
34       >
35         Model Name
36       </FormLabel>
37       <Col
38         sm="10"
39       >
40         <StateManager
41           defaultInputValue=""
42           defaultMenuIsOpen={false}
43           defaultValue={null}
44           onChange={[Function]}
45           options={Array []}
46         />
47       </Col>
48     </FormGroup>
49     <FormGroup
50       controlId="formBasicChecbox"
51     >
52       <FormCheck
53         disabled={false}
54         inline={false}
55         isInvalid={false}
56         isValid={false}
57         title=""
58         type="checkbox"
59       >
60         <FormCheckLabel
61           type="checkbox"
62         >
63           Read Only
64         </FormCheckLabel>
65         <Styled(FormCheckInput)
66           type="checkbox"
67         />
68       </FormCheck>
69     </FormGroup>
70   </ModalBody>
71   <ModalFooter>
72     <Button
73       active={false}
74       disabled={false}
75       onClick={[Function]}
76       type="null"
77       variant="secondary"
78     >
79       Cancel
80     </Button>
81     <Button
82       active={false}
83       disabled={false}
84       onClick={[Function]}
85       type="submit"
86       variant="primary"
87     >
88       Open
89     </Button>
90   </ModalFooter>
91 </Styled(Bootstrap(Modal))>
92 `;