luthor/otis/src/app/case-types/case-type-detail/case-type-detail.component....

25 lines
694 B
TypeScript
Raw Normal View History

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