From: Arundathi Patil Date: Tue, 6 Aug 2019 11:51:10 +0000 (+0530) Subject: home component spec changes X-Git-Tag: 2.0.2~289^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=99bbf951ee17dde0e8741028e9cf6fcfc6a225ba;p=usecase-ui.git home component spec changes fixed test case in home component spec file Issue-ID: USECASEUI-280 Change-Id: Id526d3be09e2a9245c3186f275969ebc145df70b Signed-off-by: Arundathi Patil --- 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();