Add a component on the flights in tunnel

This commit is contained in:
Sébastien ANDRE
2023-05-04 11:33:00 +02:00
parent 1dff0119de
commit fe9cb202ba
9 changed files with 47 additions and 2 deletions

View File

@@ -0,0 +1 @@
<p>new-tunnel-flight works!</p>

View File

@@ -0,0 +1,21 @@
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();
});
});

View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-new-tunnel-flight',
templateUrl: './new-tunnel-flight.component.html',
styleUrls: ['./new-tunnel-flight.component.css']
})
export class NewTunnelFlightComponent {
}