Add template name to UI
[clamp.git] / ui-react / src / components / dialogs / Loop / __snapshots__ / DeployLoopModal.test.js.snap
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify DeployLoopModal Test the render method 1`] = `
4 <Styled(Bootstrap(Modal))
5   backdrop="static"
6   onHide={[Function]}
7   show={true}
8   size="lg"
9 >
10   <ModalHeader
11     closeButton={true}
12     closeLabel="Close"
13   >
14     <ModalTitle>
15       Deployment parameters
16     </ModalTitle>
17   </ModalHeader>
18   <Tabs
19     activeKey="testMs"
20     id="controlled-tab-example"
21     mountOnEnter={false}
22     onSelect={[Function]}
23     unmountOnExit={false}
24     variant="tabs"
25   >
26     <Tab
27       eventKey="testMs"
28       title="testMs"
29     >
30       <Styled(FormGroup)>
31         <FormLabel
32           column={false}
33           srOnly={false}
34         >
35           location_id
36         </FormLabel>
37         <FormControl
38           defaultValue=""
39           name="location_id"
40           onChange={[Function]}
41           type="text"
42         />
43       </Styled(FormGroup)>
44       <Styled(FormGroup)>
45         <FormLabel
46           column={false}
47           srOnly={false}
48         >
49           policy_id
50         </FormLabel>
51         <FormControl
52           defaultValue="TCA_h2NMX_v1_0_ResourceInstanceName1_tca"
53           name="policy_id"
54           onChange={[Function]}
55           type="text"
56         />
57       </Styled(FormGroup)>
58     </Tab>
59   </Tabs>
60   <div />
61   <ModalFooter>
62     <Button
63       active={false}
64       disabled={false}
65       onClick={[Function]}
66       type="null"
67       variant="secondary"
68     >
69       Cancel
70     </Button>
71     <Button
72       active={false}
73       disabled={false}
74       onClick={[Function]}
75       type="submit"
76       variant="primary"
77     >
78       Deploy
79     </Button>
80   </ModalFooter>
81 </Styled(Bootstrap(Modal))>
82 `;