Production-ready test infrastructure with Page Object Model pattern, reusable fixtures for auth/DB/test-data, and example tests covering login flow, dashboard, accounts CRUD API, and visual regression. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
/**
|
|
* Re-export all page objects for convenient imports.
|
|
*
|
|
* Usage: import { LoginPage, DashboardPage } from '../page-objects';
|
|
*/
|
|
|
|
export { BasePage } from './BasePage';
|
|
export { LoginPage } from './LoginPage';
|
|
export { DashboardPage } from './DashboardPage';
|
|
export { AccountsPage } from './AccountsPage';
|