diff options
author | Mohamed Asgar Samiulla(ma926a) <ma926a@us.att.com> | 2018-03-08 14:54:47 +0530 |
---|---|---|
committer | Mohamed Asgar Samiulla(ma926a) <ma926a@us.att.com> | 2018-03-08 19:26:29 +0530 |
commit | 8ac6f161c2260e48a743df82e57b4ba24ce9795c (patch) | |
tree | cbe3d88ffe270bf15079a198621ccc3ba84f67f2 /src/app/vnfs/build-artifacts/template-holder | |
parent | 0e82fc327457a80ee79380580850526b3ceff732 (diff) |
Added some test cases on httputil service.
Created a new test for dropdown.ts
Issue-ID: APPC-717
Change-Id: Ic4e63520bbf16a7bd0d8ca0e0896d15ce3412d5d
Signed-off-by: Mohamed Asgar Samiulla(ma926a) <ma926a@us.att.com>
Diffstat (limited to 'src/app/vnfs/build-artifacts/template-holder')
-rw-r--r-- | src/app/vnfs/build-artifacts/template-holder/template-holder.component.spec.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/vnfs/build-artifacts/template-holder/template-holder.component.spec.ts b/src/app/vnfs/build-artifacts/template-holder/template-holder.component.spec.ts index 22c71d1..68526df 100644 --- a/src/app/vnfs/build-artifacts/template-holder/template-holder.component.spec.ts +++ b/src/app/vnfs/build-artifacts/template-holder/template-holder.component.spec.ts @@ -23,6 +23,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. /* tslint:disable:no-unused-variable */ import {async, ComponentFixture, TestBed} from '@angular/core/testing'; +import {NO_ERRORS_SCHEMA} from '@angular/core'; import {GoldenConfigurationHolderComponent} from './template-holder.component'; @@ -32,7 +33,8 @@ describe('GoldenConfigurationHolderComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [GoldenConfigurationHolderComponent] + declarations: [GoldenConfigurationHolderComponent], + schemas: [NO_ERRORS_SCHEMA] }) .compileComponents(); })); |