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