commit | 8b346842194edb8a9e8c4cd2764ae8ebbce988f0 | [log] [tgz] |
---|---|---|
author | atulpurohit <atul.purohit1@vodafone.com> | Tue Nov 05 14:31:56 2019 +0530 |
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | Mon Jan 13 09:33:40 2020 +0000 |
tree | 3ea20981d4cdd5858c4a99eb49c0370503c3c6cb | |
parent | 0ef638b2eb44c9f473e5ad8bea119845d968fde7 [diff] [blame] |
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>
diff --git a/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js b/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js index 68a8cdd..c66cf91 100644 --- a/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js +++ b/openecomp-ui/test/softwareProduct/validation/SoftwareProductValidationInputView.test.js
@@ -112,5 +112,9 @@ ); 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]); }); });