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