aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/ui-react/src/components/menu/MenuBar.test.js
diff options
context:
space:
mode:
authorLiam Fallon <liam.fallon@est.tech>2021-11-15 11:53:18 +0000
committerGerrit Code Review <gerrit@onap.org>2021-11-15 11:53:18 +0000
commitcb347e737f05d030fe781e15a9cf755cef42c80f (patch)
tree8919ef211d85b25b2e4edc94b40c678dabb87a85 /runtime/ui-react/src/components/menu/MenuBar.test.js
parent496f58cf8f5ad6c65b417d2ae79a69ece480d049 (diff)
parent2022e5ce5a03788a6edc5761c495cfadc5ded485 (diff)
Merge "Align ui-react file in policy-clamp and policy-gui"
Diffstat (limited to 'runtime/ui-react/src/components/menu/MenuBar.test.js')
-rw-r--r--runtime/ui-react/src/components/menu/MenuBar.test.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/runtime/ui-react/src/components/menu/MenuBar.test.js b/runtime/ui-react/src/components/menu/MenuBar.test.js
index 3e96dbf38..81117bb90 100644
--- a/runtime/ui-react/src/components/menu/MenuBar.test.js
+++ b/runtime/ui-react/src/components/menu/MenuBar.test.js
@@ -26,21 +26,21 @@ import MenuBar from './MenuBar';
describe('Verify MenuBar', () => {
- it('Test the render method', () => {
- const component = shallow(<MenuBar />)
+ it('Test the render method', () => {
+ const component = shallow(<MenuBar/>)
- expect(component).toMatchSnapshot();
- });
+ expect(component).toMatchSnapshot();
+ });
- it('Update loopName', () => {
- const component = shallow(<MenuBar />)
- component.setProps({ loopName: "newLoop" });
- expect(component.state('disabled')).toBe(false);
- });
+ it('Update loopName', () => {
+ const component = shallow(<MenuBar/>)
+ component.setProps({ loopName: "newLoop" });
+ expect(component.state('disabled')).toBe(false);
+ });
- it('Default loopName', () => {
- const component = shallow(<MenuBar />)
- component.setProps({ loopName: "Empty (NO loop loaded yet)" });
- expect(component.state('disabled')).toBe(true);
- });
+ it('Default loopName', () => {
+ const component = shallow(<MenuBar/>)
+ component.setProps({ loopName: "Empty (NO loop loaded yet)" });
+ expect(component.state('disabled')).toBe(true);
+ });
});