From 698cb92a5a5ebf2852ba1fe20feb0994874ca3cf Mon Sep 17 00:00:00 2001 From: Rupinder Date: Thu, 27 Feb 2020 18:16:38 +0530 Subject: added test case for run component Wrote test case for run.component.spec.ts Issue-ID: PORTAL-834 Change-Id: Ic2fe3cbf996c34c9fd5bbb22bcf6187cf311d092 Signed-off-by: Rupinder --- .../analytics/Report_List/Report/run/run.component.spec.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run') diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts index e9439dda..82eda851 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts @@ -1,6 +1,8 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RunComponent } from './run.component'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; +import { RouterTestingModule } from '@angular/router/testing'; describe('RunComponent', () => { let component: RunComponent; @@ -8,7 +10,8 @@ describe('RunComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ RunComponent ] + declarations: [ RunComponent ], + imports: [HttpClientTestingModule, RouterTestingModule] }) .compileComponents(); })); @@ -22,4 +25,11 @@ describe('RunComponent', () => { it('should create', () => { expect(component).toBeTruthy(); }); + + it('should test ngOnInit method', () => { + component.ngOnInit(); + component.reportType !== "Dashboard"; + expect(component.stepNo).toEqual("8"); + }); + }); -- cgit 1.2.3-korg