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