qe-fe-automation
Version:
FE test automation framework using cypress
16 lines (14 loc) • 548 B
text/typescript
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();
}
);
});