23 lines
557 B
TypeScript
23 lines
557 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CaseResult } from './case-result';
|
|
|
|
describe('CaseResult', () => {
|
|
let component: CaseResult;
|
|
let fixture: ComponentFixture<CaseResult>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [CaseResult]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(CaseResult);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|