Add react ui test
Add react ui test to improve code coverage.
Issue-ID: CLAMP-509
Change-Id: Ic9c974a78ee453dddb8f985f3e9c9067f66e95d9
Signed-off-by: xuegao <xg353y@intl.att.com>
diff --git a/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js
index 5153de9..208c947 100644
--- a/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js
+++ b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js
@@ -34,9 +34,9 @@
"LOOP_gmtAS_v1_0_ResourceInstanceName2_tca_2"
]));
})
-
+
it('Test the render method', () => {
-
+
const component = shallow(<OpenLoopModal/>);
expect(component).toMatchSnapshot();
});
@@ -44,7 +44,6 @@
it('Onchange event', () => {
const event = {value: 'LOOP_gmtAS_v1_0_ResourceInstanceName1_tca_3'};
const component = shallow(<OpenLoopModal/>);
- const forms = component.find('StateManager');
component.find('StateManager').simulate('change', event);
component.update();
@@ -60,7 +59,7 @@
expect(handleClose).toHaveBeenCalledTimes(1);
expect(component.state('show')).toEqual(false);
- expect(historyMock.push.mock.calls[0]).toEqual([ '/', ]);
+ expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
handleClose.mockClear();
});
@@ -75,8 +74,8 @@
expect(handleOpen).toHaveBeenCalledTimes(1);
expect(component.state('show')).toEqual(false);
- expect(historyMock.push.mock.calls[0]).toEqual([ '/', ]);
-
+ expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
+
handleOpen.mockClear();
});