qe-fe-automation
Version:
FE test automation framework using cypress
14 lines (12 loc) • 378 B
text/typescript
import { HotelItinerary, Hotels } from '@hotel-lib/index';
import { User_Type } from '@support-onboard/index';
describe('Hotel: prepay booking', () => {
it(
'C49931: Verify user is able to book Book Prepay hotel',
{ tags: ['@tier1'] },
() => {
Hotels.prepareCompanyAndUserCreation(User_Type.TRAVELER);
HotelItinerary.bookPrePayHotel();
}
);
});