Sauvegarde du projet

This commit is contained in:
Vincent Ramiere 2021-11-27 19:11:48 +01:00
parent 7bb7ed5145
commit 5915f4a874
28 changed files with 305 additions and 513 deletions

View file

@ -0,0 +1,25 @@
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();
});
});