From 4c6f6a443cb2e6effa995e77d56689c1c2dab4ad Mon Sep 17 00:00:00 2001 From: jegadeeshbabu3 Date: Fri, 28 Feb 2020 17:42:20 +0530 Subject: Fixed the test cases,added sonar config Fixed test cases and added sonar config details Issue-ID: PORTAL-837 Change-Id: Ie4aa104871cfbbd6c6e36500f5ef2e250bafb575 Signed-off-by: jz385p --- .../app/layout/components/header-menu/header-menu.component.spec.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'portal-FE-common/src/app/layout/components/header-menu') 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(); })); -- cgit 1.2.3-korg