Ajout des formulaires de création de

"Aircraft", "JumpType", "Gear" et "DZ".
This commit is contained in:
Sébastien André
2019-11-28 16:44:53 +01:00
parent 54f5398af1
commit b1613ab15b
26 changed files with 212 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NewGearComponent } from './new-gear.component';
describe('NewGearComponent', () => {
let component: NewGearComponent;
let fixture: ComponentFixture<NewGearComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NewGearComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NewGearComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});