qe-fe-automation
Version:
FE test automation framework using cypress
10 lines (8 loc) • 348 B
text/typescript
import { Hotels, bookHotel } from '@hotel-lib/index';
import { User_Type } from '@support-onboard/index';
describe('Personal Travel: Hotel - One traveler', () => {
it('C50619: should be able to book personal hotel', { tags: ['@tier1'] }, () => {
Hotels.prepareCompanyAndUserCreation(User_Type.TRAVELER);
bookHotel('Personal');
});
});