ng-implementation/sae-csc/src/app/pages/similar-cases/case-result/case-result.spec.ts
2025-08-08 10:57:00 +02:00

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();
});
});