From 99bbf951ee17dde0e8741028e9cf6fcfc6a225ba Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Tue, 6 Aug 2019 17:21:10 +0530 Subject: home component spec changes fixed test case in home component spec file Issue-ID: USECASEUI-280 Change-Id: Id526d3be09e2a9245c3186f275969ebc145df70b Signed-off-by: Arundathi Patil --- usecaseui-portal/src/app/home/home.component.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'usecaseui-portal') diff --git a/usecaseui-portal/src/app/home/home.component.spec.ts b/usecaseui-portal/src/app/home/home.component.spec.ts index 7ed6abfc..9e463e65 100644 --- a/usecaseui-portal/src/app/home/home.component.spec.ts +++ b/usecaseui-portal/src/app/home/home.component.spec.ts @@ -4,6 +4,7 @@ import { NgZorroAntdModule } from 'ng-zorro-antd'; import { NgxEchartsModule } from 'ngx-echarts'; import { HttpClientModule } from '@angular/common/http'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { RouterTestingModule } from '@angular/router/testing'; import { HomeComponent } from './home.component'; import { PieComponent } from '../components/charts/pie/pie.component'; @@ -11,7 +12,7 @@ import { BarComponent } from '../components/charts/bar/bar.component'; import { LineComponent } from '../components/charts/line/line.component'; import { HomesService } from '../homes.service'; -fdescribe('HomeComponent', () => { +describe('HomeComponent', () => { let component: HomeComponent; let fixture: ComponentFixture; @@ -22,7 +23,8 @@ fdescribe('HomeComponent', () => { NgZorroAntdModule, NgxEchartsModule, HttpClientModule, - BrowserAnimationsModule], + BrowserAnimationsModule, + RouterTestingModule], providers: [HomesService, TranslateService] }) .compileComponents(); -- cgit 1.2.3-korg