Ajout du composant 'jump' (détail d'un saut)

This commit is contained in:
Julien Gautier
2023-10-04 14:16:29 +02:00
parent b0c9dbd647
commit 37cbba6cad
10 changed files with 303 additions and 3 deletions
@@ -0,0 +1,21 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { JumpComponent } from './jump.component';
describe('JumpComponent', () => {
let component: JumpComponent;
let fixture: ComponentFixture<JumpComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [JumpComponent]
});
fixture = TestBed.createComponent(JumpComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});