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