barker/bookie/src/app/roles/role-list/role-list.component.spec.ts

24 lines
621 B
TypeScript

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