diff options
Diffstat (limited to 'openecomp-ui/test')
-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(); |