ng-implementation/sae-csc/src/app/pages/similar-cases/case-result/case-result.spec.ts

24 lines
557 B
TypeScript
Raw Normal View History

2025-08-07 16:42:16 +02:00
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();
});
});