svishnev | f678490 | 2018-02-12 09:10:35 +0200 | [diff] [blame] | 1 | /*! |
| 2 | * Copyright © 2016-2018 European Support Limited |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 13 | * or implied. See the License for the specific language governing |
| 14 | * permissions and limitations under the License. |
| 15 | */ |
| 16 | import {VSPEditorFactoryWithLicensingData} from 'test-utils/factories/softwareProduct/SoftwareProductEditorFactories.js'; |
| 17 | import {storeCreator} from 'sdc-app/AppStore.js'; |
| 18 | import {actionTypes} from 'sdc-app/onboarding/softwareProduct/SoftwareProductConstants.js'; |
| 19 | |
| 20 | describe('SoftwareProduct Attachments - validation flow test: ', function () { |
| 21 | |
| 22 | it('candidate in process flag test', () => { |
| 23 | const softwareProduct = VSPEditorFactoryWithLicensingData.build(); |
| 24 | const store = storeCreator({ |
| 25 | softwareProduct: { |
| 26 | softwareProductEditor: {data: softwareProduct}, |
| 27 | softwareProductQuestionnaire: {qdata: 'test', qschema: {type: 'string'}} |
| 28 | } |
| 29 | }); |
| 30 | store.dispatch({ |
| 31 | type: actionTypes.CANDIDATE_IN_PROCESS, |
| 32 | inProcess: true |
| 33 | }); |
| 34 | let unsubscribe = store.subscribe(() => { |
| 35 | expect(store.getState().softwareProduct.softwareProductEditor.data.onboardingOrigin).toEqual(true); |
| 36 | }); |
| 37 | unsubscribe(); |
| 38 | }); |
| 39 | |
| 40 | }); |