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