angular-covid/src/app/component/home/all/home-symptoms/home-symptoms.component.spec.ts
2025-03-31 19:43:59 +02:00

23 lines
640 B
TypeScript

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