diff options
author | atulpurohit <atul.purohit1@vodafone.com> | 2019-11-05 14:31:56 +0530 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2020-01-13 09:33:40 +0000 |
commit | 8b346842194edb8a9e8c4cd2764ae8ebbce988f0 (patch) | |
tree | 3ea20981d4cdd5858c4a99eb49c0370503c3c6cb /openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js | |
parent | 0ef638b2eb44c9f473e5ad8bea119845d968fde7 (diff) |
Refresh option in validation result page
Issue-ID: SDC-2585
Co-authored-by: nikhil.soni@vodafone.com
Signed-off-by: atulpurohit <atul.purohit1@vodafone.com>
Change-Id: I78f1385d219837c300cb33aff82b7459f137babb
Signed-off-by: atulpurohit <atul.purohit1@vodafone.com>
Diffstat (limited to 'openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js')
-rw-r--r-- | openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js b/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js index 68a8cdd957..c66cf91df4 100644 --- a/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js +++ b/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js @@ -112,5 +112,9 @@ describe('SoftwareProductValidation Mapper and View Classes', () => { ); expect(inputForm).toBeTruthy(); TestUtils.Simulate.submit(inputForm); + let result = TestUtils.scryRenderedDOMComponentsWithTag(vspValidationInputView, 'input'); + expect(result).toBeTruthy(); + expect(result.length).toBeTruthy(); + TestUtils.Simulate.change(result[0]); }); }); |