aboutsummaryrefslogtreecommitdiffstats
path: root/gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap
diff options
context:
space:
mode:
authorbrunomilitzer <bruno.militzer@est.tech>2022-02-25 10:38:47 +0000
committerbrunomilitzer <bruno.militzer@est.tech>2022-02-28 15:11:16 +0000
commit4651d908fe8fa83801a8df4d6e83e4eb25073f46 (patch)
tree363290263a096b70c4dd78c84ecc8b1b07730e15 /gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap
parent4a4a638d6d0336134cdb4cdab093054f3b3f09f9 (diff)
Renamed Control Loop to ACM
Issue-ID: POLICY-3940 Change-Id: I37d768ac339e4e354a369fcb659bf36da861d7aa Signed-off-by: brunomilitzer <bruno.militzer@est.tech>
Diffstat (limited to 'gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap')
-rw-r--r--gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap155
1 files changed, 155 insertions, 0 deletions
diff --git a/gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap b/gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap
new file mode 100644
index 0000000..b800f52
--- /dev/null
+++ b/gui-clamp/ui-react/src/components/dialogs/ACM/__snapshots__/InstantiationManagementModal.test.js.snap
@@ -0,0 +1,155 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Verify Instantiation Management renders correctly 1`] = `
+<Styled(Modal)
+ backdrop="static"
+ keyboard={false}
+ onHide={[Function]}
+ show={true}
+ size="xl"
+>
+ <ModalHeader
+ closeButton={true}
+ closeLabel="Close"
+ >
+ <ModalTitle>
+ Manage Instances
+ </ModalTitle>
+ </ModalHeader>
+ <ModalBody>
+ <Container
+ fluid={false}
+ >
+ <Row
+ noGutters={false}
+ >
+ <Link
+ to={
+ Object {
+ "pathname": "/editACMInstanceProperties",
+ }
+ }
+ >
+ <Button
+ active={false}
+ disabled={false}
+ type="null"
+ variant="primary"
+ >
+ Create Instance
+ </Button>
+ </Link>
+ <styled.div />
+ <Link
+ to={
+ Object {
+ "pathname": "/monitorInstantiation",
+ }
+ }
+ >
+ <Button
+ active={false}
+ disabled={false}
+ type="null"
+ variant="secondary"
+ >
+ Monitor Instantiations
+ </Button>
+ </Link>
+ </Row>
+ </Container>
+ <ForwardRef
+ bordered={true}
+ style={
+ Object {
+ "marginTop": "10px",
+ }
+ }
+ >
+ <thead>
+ <tr>
+ <th>
+ #
+ </th>
+ <th
+ style={
+ Object {
+ "textAlign": "center",
+ }
+ }
+ >
+ Instantiation Name
+ </th>
+ <th
+ style={
+ Object {
+ "textAlign": "center",
+ }
+ }
+ >
+ Edit Instantiation
+ </th>
+ <th
+ style={
+ Object {
+ "textAlign": "center",
+ }
+ }
+ >
+ Delete Instantiation
+ </th>
+ <th
+ style={
+ Object {
+ "textAlign": "center",
+ }
+ }
+ >
+ Change Order State
+ </th>
+ <th
+ style={
+ Object {
+ "textAlign": "center",
+ }
+ }
+ >
+ Instantiation Order State
+ </th>
+ <th
+ style={
+ Object {
+ "textAlign": "center",
+ }
+ }
+ >
+ Instantiation Current State
+ </th>
+ </tr>
+ </thead>
+ <tbody />
+ </ForwardRef>
+ <styled.div />
+ </ModalBody>
+ <ModalFooter>
+ <Button
+ active={false}
+ disabled={false}
+ onClick={[Function]}
+ type="null"
+ variant="secondary"
+ >
+ Clear Error Message
+ </Button>
+ <Button
+ active={false}
+ disabled={false}
+ onClick={[Function]}
+ type="null"
+ variant="secondary"
+ >
+ Close
+ </Button>
+ </ModalFooter>
+</Styled(Modal)>
+`;