diff options
Diffstat (limited to 'openecomp-ui/test/onboard/onboardingCatalog')
-rw-r--r-- | openecomp-ui/test/onboard/onboardingCatalog/test.js | 20 | ||||
-rw-r--r-- | openecomp-ui/test/onboard/onboardingCatalog/views.test.js | 12 |
2 files changed, 20 insertions, 12 deletions
diff --git a/openecomp-ui/test/onboard/onboardingCatalog/test.js b/openecomp-ui/test/onboard/onboardingCatalog/test.js index cc54e3199e..4e38675fb7 100644 --- a/openecomp-ui/test/onboard/onboardingCatalog/test.js +++ b/openecomp-ui/test/onboard/onboardingCatalog/test.js @@ -1,17 +1,17 @@ -/*! - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. +/* + * Copyright © 2016-2018 European Support Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. See the License for the specific language governing - * permissions and limitations under the License. + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ import {storeCreator} from 'sdc-app/AppStore.js'; import {OnboardingCatalogStoreFactory} from 'test-utils/factories/onboard/OnboardingCatalogFactories.js'; @@ -29,8 +29,8 @@ describe('Onboarding Catalog Module Tests', () => { it('should change active tab to All', () => { const store = storeCreator(); - const expectedStore = OnboardingCatalogStoreFactory.build({activeTab: tabsMapping.ALL}); - OnboardingCatalogActionHelper.changeActiveTab(store.dispatch, tabsMapping.ALL); + const expectedStore = OnboardingCatalogStoreFactory.build({activeTab: tabsMapping.ACTIVE}); + OnboardingCatalogActionHelper.changeActiveTab(store.dispatch, tabsMapping.ACTIVE); expect(store.getState().onboard.onboardingCatalog).toEqual(expectedStore); }); diff --git a/openecomp-ui/test/onboard/onboardingCatalog/views.test.js b/openecomp-ui/test/onboard/onboardingCatalog/views.test.js index 289826ad84..63b49aafab 100644 --- a/openecomp-ui/test/onboard/onboardingCatalog/views.test.js +++ b/openecomp-ui/test/onboard/onboardingCatalog/views.test.js @@ -15,6 +15,9 @@ */ import React from 'react'; +import {Provider} from 'react-redux'; +import {storeCreator} from 'sdc-app/AppStore.js'; + import TestUtils from 'react-dom/test-utils'; import {defaultStoreFactory} from 'test-utils/factories/onboard/OnboardingCatalogFactories.js'; import {FinalizedLicenseModelFactory} from 'test-utils/factories/licenseModel/LicenseModelFactories.js'; @@ -80,8 +83,13 @@ describe('OnBoarding Catalog test - View: ', function () { }; let params = {...func, ...mapStateToProps(data)}; - let CatalogView = TestUtils.renderIntoDocument(<OnboardingCatalogView - {...params}/>); + const store = storeCreator(); + + let CatalogView = TestUtils.renderIntoDocument( + <Provider store={store}> + <OnboardingCatalogView + {...params}/> + </Provider>); expect(CatalogView).toBeTruthy(); }); |