summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts26
1 files changed, 24 insertions, 2 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts
index 7ef63baf..32a69848 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts
@@ -49,6 +49,8 @@ import { RouterTestingModule } from '@angular/router/testing';
import { ConfirmationModalComponent } from 'src/app/modals/confirmation-modal/confirmation-modal.component';
import { BrowserDynamicTestingModule } from '@angular/platform-browser-dynamic/testing';
import { InformationModalComponent } from 'src/app/modals/information-modal/information-modal.component';
+import 'rxjs/add/observable/of';
+
describe('NewRoleFunctionComponent', () => {
let component: NewRoleFunctionComponent;
@@ -73,7 +75,10 @@ describe('NewRoleFunctionComponent', () => {
})
TestBed.overrideModule(BrowserDynamicTestingModule,{
set:{
- entryComponents:[ConfirmationModalComponent,InformationModalComponent]
+ entryComponents:[
+ ConfirmationModalComponent,
+ InformationModalComponent
+ ]
}
})
.compileComponents();
@@ -90,6 +95,22 @@ describe('NewRoleFunctionComponent', () => {
});
it('should test ngOnInit method',()=>{
+ component.editRoleFunction={
+ type: "type",
+ code: "code",
+ action: "action",
+ name: "name"
+ }
+ component.ngOnInit();
+ })
+
+ it('should test else part of ngOnInit method',()=>{
+ component.editRoleFunction={
+ type: "menu",
+ code: "code",
+ action: "action",
+ name: "name"
+ }
component.ngOnInit();
})
@@ -98,6 +119,7 @@ describe('NewRoleFunctionComponent', () => {
})
it('should test openConfirmationModal method',()=>{
- component.openConfirmationModal("indrijeet","kumar")
+ component.openConfirmationModal("indrijeet","kumar");
})
+
});