diff options
author | xuegao <xg353y@intl.att.com> | 2019-10-02 11:18:10 +0200 |
---|---|---|
committer | xuegao <xg353y@intl.att.com> | 2019-10-04 09:42:00 +0200 |
commit | 564fdb0c2e601df73813a4e9d080bd1666befce4 (patch) | |
tree | 3e5c83ed368ab22e1c39dd38f7f18b681ef04d63 /ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js | |
parent | edec26efea06ee9a9d1e0f2d29fe4b26e62d8dfb (diff) |
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>
Diffstat (limited to 'ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js')
-rw-r--r-- | ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.test.js index 5153de956..208c947c3 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 @@ describe('Verify OpenLoopModal', () => { "LOOP_gmtAS_v1_0_ResourceInstanceName2_tca_2" ])); }) - + it('Test the render method', () => { - + const component = shallow(<OpenLoopModal/>); expect(component).toMatchSnapshot(); }); @@ -44,7 +44,6 @@ describe('Verify OpenLoopModal', () => { 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 @@ describe('Verify OpenLoopModal', () => { 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 @@ describe('Verify OpenLoopModal', () => { 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(); }); |