X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-FE-common%2Fsrc%2Fapp%2Fpages%2Fweb-analytics%2Fweb-analytics-details-dialog%2Fweb-analytics-details-dialog.component.spec.ts;h=95eb021adf96809fc6494b03edbd35464b04d112;hb=4c6f6a443cb2e6effa995e77d56689c1c2dab4ad;hp=4dc85724803772260ade6045b9cdc053cc58e48a;hpb=a03dfa273ef6e196bf65acc54b9357d35eb0ed5e;p=portal.git diff --git a/portal-FE-common/src/app/pages/web-analytics/web-analytics-details-dialog/web-analytics-details-dialog.component.spec.ts b/portal-FE-common/src/app/pages/web-analytics/web-analytics-details-dialog/web-analytics-details-dialog.component.spec.ts index 4dc85724..95eb021a 100644 --- a/portal-FE-common/src/app/pages/web-analytics/web-analytics-details-dialog/web-analytics-details-dialog.component.spec.ts +++ b/portal-FE-common/src/app/pages/web-analytics/web-analytics-details-dialog/web-analytics-details-dialog.component.spec.ts @@ -39,14 +39,22 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { WebAnalyticsDetailsDialogComponent } from './web-analytics-details-dialog.component'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; +import { FormsModule } from '@angular/forms'; +import { NgMaterialModule } from 'src/app/ng-material-module'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; describe('WebAnalyticsDetailsDialogComponent', () => { let component: WebAnalyticsDetailsDialogComponent; let fixture: ComponentFixture; + const userTableAppReport: any = {"appName":"WebNameTest"}; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ WebAnalyticsDetailsDialogComponent ] + declarations: [ WebAnalyticsDetailsDialogComponent ], + imports:[HttpClientTestingModule,FormsModule,NgMaterialModule,BrowserAnimationsModule], + providers:[NgbActiveModal] }) .compileComponents(); })); @@ -54,6 +62,7 @@ describe('WebAnalyticsDetailsDialogComponent', () => { beforeEach(() => { fixture = TestBed.createComponent(WebAnalyticsDetailsDialogComponent); component = fixture.componentInstance; + component.userTableAppReport = userTableAppReport; fixture.detectChanges(); });