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