summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts')
-rw-r--r--portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts b/portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts
index b8340222..6e80fce5 100644
--- a/portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts
+++ b/portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts
@@ -36,6 +36,8 @@
*
*/
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import {HttpClientTestingModule} from '@angular/common/http/testing';
+
import { FooterComponent } from './footer.component';
@@ -45,7 +47,8 @@ describe('FooterComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ FooterComponent ]
+ declarations: [ FooterComponent],
+ imports: [HttpClientTestingModule]
})
.compileComponents();
}));