New view of list

This commit is contained in:
Sébastien André
2019-10-09 13:10:41 +02:00
parent 11cdcba702
commit 2f59760cc1
15 changed files with 232 additions and 42 deletions

View File

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