diff options
Diffstat (limited to 'src/app/vnfs/build-artifacts/template-holder/template-holder.component.spec.ts')
-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(); })); |