Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* `@futdevpro/dynamo-e2e/runtime` — Playwright fixtures + page-objects (Wave-4).
*
* Consumer:
* ```ts
* import { dye2eTest as test, expect } from '@futdevpro/dynamo-e2e/runtime';
*
* test('login form', async ({ formPO }) => {
* const login = formPO('login');
* await login.field('email').fill('user@example.com');
* await login.submit();
* });
* ```
*/
export * from './_collections/assertion-helpers.util';
export * from './_collections/unique-generator.util';
export * from './_collections/wait-helpers.util';
export * from './_models/index';
export * from './_models/test-user.interface';
export * from './_services/dialog-page-object';
export * from './_services/field-page-object';
export * from './_services/form-page-object';
export * from './_services/loader-page-object';
export * from './_services/logger.service';
export * from './_services/login-flow-helper.base';
export * from './_services/nav-page-object';
export * from './_services/toast-page-object';
export * from './_services/wave-2b-page-objects';
export * from './fixtures';
export const DYE2E_RUNTIME_VERSION: string = 'wave-5-lifted';
|