diff options
Diffstat (limited to 'vid-webpack-master/src')
-rw-r--r-- | vid-webpack-master/src/app/shared/components/genericForm/formControlsServices/sharedControlles/shared.controllers.service.spec.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vid-webpack-master/src/app/shared/components/genericForm/formControlsServices/sharedControlles/shared.controllers.service.spec.ts b/vid-webpack-master/src/app/shared/components/genericForm/formControlsServices/sharedControlles/shared.controllers.service.spec.ts index 6ee318644..0a3e2623b 100644 --- a/vid-webpack-master/src/app/shared/components/genericForm/formControlsServices/sharedControlles/shared.controllers.service.spec.ts +++ b/vid-webpack-master/src/app/shared/components/genericForm/formControlsServices/sharedControlles/shared.controllers.service.spec.ts @@ -111,6 +111,19 @@ describe('Shared Controllers Service', () => { expect (sdncPreload.value).toBe(expected); }); + each( + [ + [' checked', true, true], + [' not checked', false, false ] + ] + ). + test('pause-instantiation checkbox', (description: string) => { + const instance = null; + const pauseInstantiation: FormControlModel = service.getPauseInstantiation(instance); + expect (pauseInstantiation.displayName).toEqual('Pause upon Completion'); + expect(pauseInstantiation.dataTestId).toEqual('pauseInstantiation'); + }); + test('getlegacyRegion with AAIAIC25 - isVisible true', () => { const instance = {lcpCloudRegionId : 'AAIAIC25'}; const legacyRegionControl: FormControlModel = service.getLegacyRegion(instance); @@ -134,6 +147,8 @@ describe('Shared Controllers Service', () => { expect(control.dataTestId).toEqual('multi-selectPlatform'); expect(control.limitSelection).toEqual(1000); }); + + }); class MockAppStore<T> { |