This commit is contained in:
Amritanshu
2019-06-19 23:55:42 +05:30
parent 63f5f60842
commit 2b2624c9c2
33 changed files with 331 additions and 94 deletions

View File

@ -0,0 +1,15 @@
import {inject, TestBed} from '@angular/core/testing';
import {RoleListResolver} from './role-list-resolver.service';
describe('RoleListResolver', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [RoleListResolver]
});
});
it('should be created', inject([RoleListResolver], (service: RoleListResolver) => {
expect(service).toBeTruthy();
}));
});