qe-fe-automation
Version:
FE test automation framework using cypress
16 lines (13 loc) • 498 B
text/typescript
import { bookPersonalHotel } from '@hotel-lib/index';
import { Hotels, adultAndChildPassengers } from '@hotel-lib/search';
import { User_Type } from '@support-onboard/index';
describe('Personal Travel: Hotel - Multiple guest', () => {
it(
'C50619: should be able to book hotel with 2 personal guests',
{ tags: ['@tier1'] },
() => {
Hotels.prepareCompanyAndUserCreation(User_Type.PERSONAL_TRAVELER);
bookPersonalHotel('Personal', adultAndChildPassengers);
}
);
});