diff options
author | marine <marine.de.dorlodot@intl.att.com> | 2021-06-18 17:51:46 +0200 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2021-07-05 08:45:12 +0000 |
commit | 3453264c35275af52a2fdcde33f6e8347a65d15b (patch) | |
tree | c33f49b95ac80b2240df631f0a354bc221d15030 /openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js | |
parent | 14a9a365c5aaaa4a34fe23541dc455134056cbdb (diff) |
External license as "toggleable feature"
Code modification in onboarding BE and onboarding UI so that the External License can be seen as a toggleable feature. By default this will set to true but could be disabled.
Issue-ID: SDC-3618
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I01690c4cb44d3df590987bb340e8fbb58fe960e0
Signed-off-by: marine <marine.de.dorlodot@intl.att.com>
Diffstat (limited to 'openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js')
-rw-r--r-- | openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js b/openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js index 3928a3de95..ff36101c32 100644 --- a/openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js +++ b/openecomp-ui/test/softwareProduct/landingPage/landingPage.test.js @@ -95,7 +95,8 @@ describe('Software Product Landing Page: ', function () { const params = { ...currentScreen.props, currentSoftwareProduct, - componentsList: VSPComponentsFactory.buildList(2) + componentsList: VSPComponentsFactory.buildList(2), + features: [{name:'EXTERNAL_LICENCE', active: true}] }; const store = storeCreator(); @@ -111,7 +112,8 @@ describe('Software Product Landing Page: ', function () { const params = { ...currentScreen.props, currentSoftwareProduct, - componentsList: VSPComponentsFactory.buildList(2) + componentsList: VSPComponentsFactory.buildList(2), + features: [{name:'EXTERNAL_LICENCE', active: true}] }; const e = { target: { value: 'INTERNAL' @@ -140,7 +142,8 @@ describe('Software Product Landing Page: ', function () { const params = { currentSoftwareProduct, ...currentScreen.props, - componentsList: VSPComponentsFactory.buildList(2) + componentsList: VSPComponentsFactory.buildList(2), + features: [{name:'EXTERNAL_LICENCE', active: true}] }; const store = storeCreator(); @@ -167,7 +170,8 @@ describe('Software Product Landing Page: ', function () { componentsList: VSPComponentsFactory.buildList(2), onUploadConfirmation: dummyFunc, onUpload: dummyFunc, - onInvalidFileSizeUpload: dummyFunc + onInvalidFileSizeUpload: dummyFunc, + features: [{name:'EXTERNAL_LICENCE', active: true}] }; const files = [ @@ -210,7 +214,8 @@ describe('Software Product Landing Page: ', function () { componentsList: VSPComponentsFactory.buildList(2), onUploadConfirmation: dummyFunc, onUpload: dummyFunc, - onInvalidFileSizeUpload: dummyFunc + onInvalidFileSizeUpload: dummyFunc, + features: [{name:'EXTERNAL_LICENCE', active: true}] }; const store = storeCreator(); |