modification in report component 45/104045/1
authorIndrijeet kumar <indriku1@in.ibm.com>
Fri, 20 Mar 2020 11:04:04 +0000 (16:34 +0530)
committerIndrijeet kumar <indriku1@in.ibm.com>
Fri, 20 Mar 2020 11:04:13 +0000 (16:34 +0530)
modification in report component

Issue-ID: PORTAL-813
Change-Id: I79a5e5fa8bf9c5726d834084a6277234cce27af4
Signed-off-by: Indrijeet Kumar <indriku1@in.ibm.com>
ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/report.component.spec.ts

index 0e5d416..7851d2c 100644 (file)
@@ -1,35 +1,25 @@
 import { TestBed, async } from '@angular/core/testing';
 import { RouterTestingModule } from '@angular/router/testing';
-import { AppComponent } from './app.component';
-
-describe('AppComponent', () => {
+// import { AppComponent } from './app.component';
+import { ReportComponent } from './report.component';
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+describe('ReportComponent', () => {
   beforeEach(async(() => {
     TestBed.configureTestingModule({
+      schemas: [CUSTOM_ELEMENTS_SCHEMA],
       imports: [
-        RouterTestingModule
+        RouterTestingModule,
+        HttpClientTestingModule
       ],
       declarations: [
-        AppComponent
+        ReportComponent
       ],
     }).compileComponents();
   }));
-
   it('should create the app', () => {
-    const fixture = TestBed.createComponent(AppComponent);
+    const fixture = TestBed.createComponent(ReportComponent);
     const app = fixture.debugElement.componentInstance;
     expect(app).toBeTruthy();
   });
-
-  it(`should have as title 'TitleProject'`, () => {
-    const fixture = TestBed.createComponent(AppComponent);
-    const app = fixture.debugElement.componentInstance;
-    expect(app.title).toEqual('TitleProject');
-  });
-
-  it('should render title in a h1 tag', () => {
-    const fixture = TestBed.createComponent(AppComponent);
-    fixture.detectChanges();
-    const compiled = fixture.debugElement.nativeElement;
-    expect(compiled.querySelector('h1').textContent).toContain('Welcome to TitleProject!');
-  });
-});
+});
\ No newline at end of file