super-productivity/e2e/utils/index.ts
Johannes Millan 4ba9b72597 refactor(e2e): simplify improvements per KISS/YAGNI review
Remove unused speculative abstractions:
- Delete material-helpers.ts (223 lines, zero usages)
- Delete retry-helpers.ts (186 lines, zero usages)
- Revert unused assertion helpers
- Revert unused timeout constants

Keep valuable changes:
- applyPrefix() helper in BasePage (used 4x)
- ProjectPage now uses applyPrefix() for DRY
- Simplified utils/index.ts barrel export
2026-01-06 12:46:20 +01:00

14 lines
460 B
TypeScript

/**
* Barrel export for e2e utility modules.
* Import from this file for cleaner imports:
* @example import { expectTaskCount, waitForAppReady } from '../../utils';
*/
export * from './assertions';
export * from './element-helpers';
export * from './waits';
export * from './tour-helpers';
// Note: sync-helpers, time-input-helper, and schedule-task-helper
// are not exported here as they are specialized utilities.
// Import them directly when needed.