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