import { LoginPage } from '@admin-lib/index';
import { RentalCarUtility, User_Type, RentalCarPolicyModal } from '@rentalCar-lib/index';

describe.skip('Rental Car: booking Car class OOP', () => {
  it(
    'C3340199: Itinerary details get updated upon declining the booking',
    { tags: ['@tier1'] },
    () => {
      RentalCarUtility.prepareUsers(User_Type.ADMIN);
      cy.createRentalCarClassPolicyWithHardApproval();
      LoginPage.createNewTravelerAndLogin();
      RentalCarPolicyModal.declineRentalCarClassPolicyBooking();
    }
  );
});
