diff options
author | 2021-11-01 09:51:48 +0000 | |
---|---|---|
committer | 2021-11-01 09:51:48 +0000 | |
commit | c989419a1f8edeed0da94106162668dc023465b7 (patch) | |
tree | 6802556de8d51351b75a189ac7a6106ca93b2a2b /gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js | |
parent | cdd17d8ce7c1ec139fb8ef0685d5b8961e93661d (diff) | |
parent | 53b46adf3359b37cd83fea036c1b87f8b55683db (diff) |
Merge "Added JEST Unit Tests for Monitoring Functionality"
Diffstat (limited to 'gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js')
-rw-r--r-- | gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js b/gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js index 5e30924..cce6225 100644 --- a/gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js +++ b/gui-clamp/ui-react/src/components/dialogs/ControlLoop/MonitorInstantiation.test.js @@ -17,7 +17,7 @@ * ============LICENSE_END========================================================= */ -import { mount, shallow } from "enzyme"; +import { shallow } from "enzyme"; import toJson from "enzyme-to-json"; import { createMemoryHistory } from "history"; import React from "react"; @@ -25,39 +25,31 @@ import MonitorInstantiation from "./MonitorInstantiation"; import { act } from "react-dom/test-utils"; describe('Verify MonitoringInstantiation', () => { - - it("renders without crashing", () => { - shallow(<MonitorInstantiation/>); - }); + const container = shallow(<MonitorInstantiation />); + const containerWithHistory = shallow(<MonitorInstantiation history={ createMemoryHistory() }/>); it("renders correctly", () => { - const tree = shallow(<MonitorInstantiation/>); - expect(toJson(tree)).toMatchSnapshot(); + expect(toJson(container)).toMatchSnapshot(); }); it('should have a Button element', () => { - const container = shallow(<MonitorInstantiation/>) expect(container.find('Button').length).toEqual(1); }); it('handleClose called when bottom button clicked', () => { - const history = createMemoryHistory(); - const component = mount(<MonitorInstantiation history={ history }/>) const logSpy = jest.spyOn(console, 'log'); act(() => { - component.find('[variant="secondary"]').simulate('click'); + containerWithHistory.find('[variant="secondary"]').simulate('click'); expect(logSpy).toHaveBeenCalledWith('handleClose called'); }); }); it('handleClose called when top-right button clicked', () => { - const history = createMemoryHistory(); - const component = mount(<MonitorInstantiation history={ history }/>) const logSpy = jest.spyOn(console, 'log'); act(() => { - component.find('[size="xl"]').get(0).props.onHide(); + containerWithHistory.find('[size="xl"]').get(0).props.onHide(); expect(logSpy).toHaveBeenCalledWith('handleClose called'); }); }); |