diff options
Diffstat (limited to 'openecomp-ui/test/licenseModel')
-rw-r--r-- | openecomp-ui/test/licenseModel/creation/LicenseModelCreation.test.js | 4 | ||||
-rw-r--r-- | openecomp-ui/test/licenseModel/entitlementPools/test.js | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/openecomp-ui/test/licenseModel/creation/LicenseModelCreation.test.js b/openecomp-ui/test/licenseModel/creation/LicenseModelCreation.test.js index a52d06baa3..59ac267b04 100644 --- a/openecomp-ui/test/licenseModel/creation/LicenseModelCreation.test.js +++ b/openecomp-ui/test/licenseModel/creation/LicenseModelCreation.test.js @@ -28,6 +28,8 @@ describe('License Model Creation Module Tests', function() { it ('should return empty data', () => { let state = { licenseModelList: [], + archivedLicenseModelList: [], + finalizedLicenseModelList: [], licenseModel: { licenseModelCreation: { data: {} @@ -43,6 +45,8 @@ describe('License Model Creation Module Tests', function() { it ('should return vlm names list', () => { let state = { + archivedLicenseModelList: [], + finalizedLicenseModelList: [], licenseModelList: [{ name: 'vlm1', id: 'vlm1_id' diff --git a/openecomp-ui/test/licenseModel/entitlementPools/test.js b/openecomp-ui/test/licenseModel/entitlementPools/test.js index 173384dc02..dc56b11f1b 100644 --- a/openecomp-ui/test/licenseModel/entitlementPools/test.js +++ b/openecomp-ui/test/licenseModel/entitlementPools/test.js @@ -88,14 +88,14 @@ describe('Entitlement Pools Module Tests', function () { } }; }); - + mockRest.addHandler('fetch', ({data, options, baseUrl}) => { expect(baseUrl).toEqual(`/onboarding-api/v1.0/items/${LICENSE_MODEL_ID}/versions/${version.id}`); expect(data).toEqual(undefined); expect(options).toEqual(undefined); return {...returnedVersionFields, state: {synchronizationState: SyncStates.UP_TO_DATE, dirty: true}}; }); - + return EntitlementPoolsActionHelper.deleteEntitlementPool(store.dispatch, { licenseModelId: LICENSE_MODEL_ID, version, @@ -148,6 +148,8 @@ describe('Entitlement Pools Module Tests', function () { return {...returnedVersionFields, state: {synchronizationState: SyncStates.UP_TO_DATE, dirty: true}}; }); + + return EntitlementPoolsActionHelper.saveEntitlementPool(store.dispatch, { licenseModelId: LICENSE_MODEL_ID, |