Implémentation SkydiverId API

This commit is contained in:
Rampeur
2024-05-08 20:32:49 +02:00
parent 6dece821a8
commit 7c3f0c9648
54 changed files with 2323 additions and 1395 deletions
@@ -6,10 +6,12 @@ describe('JumpComponent', () => {
let component: JumpComponent;
let fixture: ComponentFixture<JumpComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [JumpComponent]
});
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [JumpComponent]
})
.compileComponents();
fixture = TestBed.createComponent(JumpComponent);
component = fixture.componentInstance;
fixture.detectChanges();