luthor/otis/src/app/cases/case-detail/case-detail.component.spec.ts

25 lines
665 B
TypeScript

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