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