Add unit tests for UI
[clamp.git] / ui-react / src / components / dialogs / __snapshots__ / DeployLoop.test.js.snap
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify DeployLoop 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       Deployment parameters
15     </ModalTitle>
16   </ModalHeader>
17   <Styled(FormGroup)>
18     <FormLabel
19       column={false}
20       srOnly={false}
21     >
22       location_id
23     </FormLabel>
24     <FormControl
25       defaultValue=""
26       name="location_id"
27       onChange={[Function]}
28       type="text"
29     />
30   </Styled(FormGroup)>
31   <Styled(FormGroup)>
32     <FormLabel
33       column={false}
34       srOnly={false}
35     >
36       policy_id
37     </FormLabel>
38     <FormControl
39       defaultValue="TCA_h2NMX_v1_0_ResourceInstanceName1_tca"
40       name="policy_id"
41       onChange={[Function]}
42       type="text"
43     />
44   </Styled(FormGroup)>
45   <ModalFooter>
46     <Button
47       active={false}
48       disabled={false}
49       onClick={[Function]}
50       type="null"
51       variant="secondary"
52     >
53       Cancel
54     </Button>
55     <Button
56       active={false}
57       disabled={false}
58       onClick={[Function]}
59       type="submit"
60       variant="primary"
61     >
62       Deploy
63     </Button>
64   </ModalFooter>
65 </Styled(Bootstrap(Modal))>
66 `;