import { ComponentFixture, TestBed } from '@angular/core/testing'; import { NewTunnelFlightComponent } from './new-tunnel-flight.component'; describe('NewTunnelFlightComponent', () => { let component: NewTunnelFlightComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [NewTunnelFlightComponent] }); fixture = TestBed.createComponent(NewTunnelFlightComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });