diff options
author | sebdet <sebastien.determe@intl.att.com> | 2021-04-28 11:12:45 +0200 |
---|---|---|
committer | S�bastien Determe <sebastien.determe@intl.att.com> | 2021-05-05 13:05:48 +0000 |
commit | 44fac5a66971a6013c429537ab2b509d1a1a8a91 (patch) | |
tree | f1e24b9eeb191ad5c4e5bdcc03f46b89b85eafd5 /ui-react/src/components/loop_viewer/status | |
parent | 4423d367c47d818493fbad627a43ba68f87d15f2 (diff) |
Add Tests on UI
Add some test to UI and fix errors reported by JEST during Ui tests
Issue-ID: POLICY-3200
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I69e93ad1f1714fa60a0c7ea9b1f3fb691f089f8a
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'ui-react/src/components/loop_viewer/status')
-rw-r--r-- | ui-react/src/components/loop_viewer/status/LoopStatus.js | 7 | ||||
-rw-r--r-- | ui-react/src/components/loop_viewer/status/__snapshots__/LoopStatus.test.js.snap | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ui-react/src/components/loop_viewer/status/LoopStatus.js b/ui-react/src/components/loop_viewer/status/LoopStatus.js index d960c31e6..4b35b48e1 100644 --- a/ui-react/src/components/loop_viewer/status/LoopStatus.js +++ b/ui-react/src/components/loop_viewer/status/LoopStatus.js @@ -57,12 +57,13 @@ export default class LoopStatus extends React.Component { renderStatus() { - if (this.state.loopCache.getComponentStates() != null) { - return Object.keys(this.state.loopCache.getComponentStates()).map((key) => { + let componentStates = this.state.loopCache.getComponentStates(); + if (componentStates != null) { + return Object.keys(componentStates).map((key) => { console.debug("Adding status for: ",key); var res={} res[key]=this.state.loopCache.getComponentStates()[key]; - return (<TableRow statusRow={{'componentName':key,'stateName':this.state.loopCache.getComponentStates()[key].componentState.stateName,'description':this.state.loopCache.getComponentStates()[key].componentState.description}} />) + return (<TableRow key={key} statusRow={{'componentName':key,'stateName':this.state.loopCache.getComponentStates()[key].componentState.stateName,'description':this.state.loopCache.getComponentStates()[key].componentState.description}} />) }) } diff --git a/ui-react/src/components/loop_viewer/status/__snapshots__/LoopStatus.test.js.snap b/ui-react/src/components/loop_viewer/status/__snapshots__/LoopStatus.test.js.snap index 73da5fff1..24d879de9 100644 --- a/ui-react/src/components/loop_viewer/status/__snapshots__/LoopStatus.test.js.snap +++ b/ui-react/src/components/loop_viewer/status/__snapshots__/LoopStatus.test.js.snap @@ -40,6 +40,7 @@ exports[`Verify LoopStatus Test the render method 1`] = ` </thead> <tbody> <TableRow + key="POLICY" statusRow={ Object { "componentName": "POLICY", @@ -49,6 +50,7 @@ exports[`Verify LoopStatus Test the render method 1`] = ` } /> <TableRow + key="DCAE" statusRow={ Object { "componentName": "DCAE", |