diff options
author | jegadeeshbabu3 <jegadeesh.babu@att.com> | 2020-02-28 17:42:20 +0530 |
---|---|---|
committer | Jegadeesh Babu <jegadeesh.babu@att.com> | 2020-02-28 15:35:27 +0000 |
commit | 4c6f6a443cb2e6effa995e77d56689c1c2dab4ad (patch) | |
tree | 7a961f7c4e2c7de9cea8f2acff473c9f4b11182e /portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog | |
parent | a03dfa273ef6e196bf65acc54b9357d35eb0ed5e (diff) |
Fixed the test cases,added sonar config
Fixed test cases and added sonar config details
Issue-ID: PORTAL-837
Change-Id: Ie4aa104871cfbbd6c6e36500f5ef2e250bafb575
Signed-off-by: jz385p <jegadeesh.babu@att.com>
Diffstat (limited to 'portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog')
-rw-r--r-- | portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog/widget-details-dialog.component.spec.ts | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog/widget-details-dialog.component.spec.ts b/portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog/widget-details-dialog.component.spec.ts index 411da1e9..b2f3b4b0 100644 --- a/portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog/widget-details-dialog.component.spec.ts +++ b/portal-FE-common/src/app/pages/widget-onboarding/widget-details-dialog/widget-details-dialog.component.spec.ts @@ -39,14 +39,23 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { WidgetDetailsDialogComponent } from './widget-details-dialog.component'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; +import { FormsModule, ReactiveFormsModule } 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'; +import { IWidget } from 'src/app/shared/model/widget-onboarding/widget'; describe('WidgetDetailsDialogComponent', () => { let component: WidgetDetailsDialogComponent; let fixture: ComponentFixture<WidgetDetailsDialogComponent>; + const widget: IWidget = {"allUser":true,"name":"WidgetTestName"}; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ WidgetDetailsDialogComponent ] + declarations: [ WidgetDetailsDialogComponent ], + imports:[HttpClientTestingModule,FormsModule,ReactiveFormsModule,NgMaterialModule,BrowserAnimationsModule], + providers:[NgbActiveModal] }) .compileComponents(); })); @@ -54,6 +63,7 @@ describe('WidgetDetailsDialogComponent', () => { beforeEach(() => { fixture = TestBed.createComponent(WidgetDetailsDialogComponent); component = fixture.componentInstance; + component.widget=widget; fixture.detectChanges(); }); |