- Remove `playwright.config.js` to clean up configuration. - Add new E2E test suites (`admin-pos-orders`, `admin-module-goals`, `admin-module-pos-mobile-order-flow`) to structure Admin module tests. - Introduce reusable authentication and data seeding utilities in `fixtures` for streamlined test flows and maintainability.
14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
/**
|
|
* Central export for all test fixtures, helpers, and shared data
|
|
* Import from this file to access all shared test utilities
|
|
*
|
|
* Usage:
|
|
* import { loginAsUser, userCredentials, bookingTestData } from './fixtures';
|
|
*/
|
|
|
|
// Re-export all test data
|
|
export * from './testData';
|
|
|
|
// Re-export all authentication helpers
|
|
export * from './authHelpers';
|