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