Add spinner for Deploy action
[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   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   <Tabs
18     activeKey="testMs"
19     id="controlled-tab-example"
20     mountOnEnter={false}
21     onSelect={[Function]}
22     unmountOnExit={false}
23     variant="tabs"
24   >
25     <Tab
26       eventKey="testMs"
27       title="testMs"
28     >
29       <Styled(FormGroup)>
30         <FormLabel
31           column={false}
32           srOnly={false}
33         >
34           location_id
35         </FormLabel>
36         <FormControl
37           defaultValue=""
38           name="location_id"
39           onChange={[Function]}
40           type="text"
41         />
42       </Styled(FormGroup)>
43       <Styled(FormGroup)>
44         <FormLabel
45           column={false}
46           srOnly={false}
47         >
48           policy_id
49         </FormLabel>
50         <FormControl
51           defaultValue="TCA_h2NMX_v1_0_ResourceInstanceName1_tca"
52           name="policy_id"
53           onChange={[Function]}
54           type="text"
55         />
56       </Styled(FormGroup)>
57     </Tab>
58   </Tabs>
59   <div />
60   <ModalFooter>
61     <Button
62       active={false}
63       disabled={false}
64       onClick={[Function]}
65       type="null"
66       variant="secondary"
67     >
68       Cancel
69     </Button>
70     <Button
71       active={false}
72       disabled={false}
73       onClick={[Function]}
74       type="submit"
75       variant="primary"
76     >
77       Deploy
78     </Button>
79   </ModalFooter>
80 </Styled(Bootstrap(Modal))>
81 `;