luthor/otis/src/app/roles/role-detail/role-detail.component.spec.ts

25 lines
665 B
TypeScript
Raw Normal View History

2021-01-05 07:32:52 +00:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RoleDetailComponent } from './role-detail.component';
describe('RoleDetailComponent', () => {
let component: RoleDetailComponent;
let fixture: ComponentFixture<RoleDetailComponent>;
2022-04-17 08:14:56 +00:00
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [RoleDetailComponent],
}).compileComponents();
}));
2021-01-05 07:32:52 +00:00
beforeEach(() => {
fixture = TestBed.createComponent(RoleDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});