angularMeteo/src/app/meteo-jour/meteo-jour.component.spec.ts
2021-11-27 19:11:48 +01:00

25 lines
648 B
TypeScript

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