mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-31 19:50:44 +00:00
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
14 lines
460 B
TypeScript
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.
|