diff options
Diffstat (limited to 'portal-FE-common/src/app/pages/contact-us/contact-us.component.spec.ts')
-rw-r--r-- | portal-FE-common/src/app/pages/contact-us/contact-us.component.spec.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/portal-FE-common/src/app/pages/contact-us/contact-us.component.spec.ts b/portal-FE-common/src/app/pages/contact-us/contact-us.component.spec.ts index db77e078..6b38cbd5 100644 --- a/portal-FE-common/src/app/pages/contact-us/contact-us.component.spec.ts +++ b/portal-FE-common/src/app/pages/contact-us/contact-us.component.spec.ts @@ -39,6 +39,8 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ContactUsComponent } from './contact-us.component'; +import { NgMaterialModule } from 'src/app/ng-material-module'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('ContactUsComponent', () => { let component: ContactUsComponent; @@ -46,7 +48,8 @@ describe('ContactUsComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ ContactUsComponent ] + declarations: [ ContactUsComponent ], + imports: [NgMaterialModule,HttpClientTestingModule] }) .compileComponents(); })); |