Files
SkydiveLogs/Front/skydivelogs-app/src/app/new-tunnel-flight/new-tunnel-flight.component.spec.ts
2023-05-04 11:33:00 +02:00

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();
});
});