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

25 lines
694 B
TypeScript

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