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