import { FlightBookingUtility, FlightUtility } from '@flight-modal/index';
import { User_Type } from '@support-onboard/index';

describe.skip('Personal Travel: Round trip flight', () => {
  it(
    'C50618: should be able to book personal round trip flight',
    { tags: ['@tier1'] },
    () => {
      FlightUtility.prepareCompanyAndUserCreation(User_Type.PERSONAL_TRAVELER);
      FlightBookingUtility.bookRoundTrip('Personal');
    }
  );
});
