qe-fe-automation
Version:
FE test automation framework using cypress
12 lines (10 loc) • 351 B
text/typescript
import { LoginPage } from '@admin-lib/index';
import { Provider_Type, User_Type } from '@support-onboard/index';
describe('Onboarding', () => {
it('C12435: should create new company and admin', () => {
LoginPage.createNewCompanyAndLoginWithUserByType({
providers: [Provider_Type.ALL_CAR],
users: [User_Type.ADMIN]
});
});
});