qe-fe-automation
Version:
FE test automation framework using cypress
16 lines (12 loc) • 547 B
text/typescript
import { LoginPage } from '@admin-lib/index';
import { User_Type } from '@support-onboard/index';
import { TeamEventsInterceptApis, EventsWorkflow } from '@group-events-lib/index';
describe('GME: Team event: Draft Events', () => {
beforeEach(() => {
LoginPage.createNewCompanyAndLoginWithUserByType({ users: [User_Type.ADMIN] });
TeamEventsInterceptApis.teamEventIntercept();
});
it('C50995: Create a draft of the Team Event', { tags: ['@tier1'] }, () => {
EventsWorkflow.createDraftEvent('Zurich', 'Zurich event');
});
});