import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RoleListComponent } from './role-list.component'; describe('RoleListComponent', () => { let component: RoleListComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ RoleListComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(RoleListComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });