Files
flights_web/ClientApp/src/app/modules/components/flight-props/flight-props.component.spec.ts
T

26 lines
662 B
TypeScript

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