Files
pleno-vue/tests/e2e/fixtures/index.ts
T
Jeppe Bundgaard b39b458f4f Add .prettierrc.json and refactor test files for improved formatting consistency:
- Introduced `.prettierrc.json` to enforce consistent code formatting across the project.
- Updated unit and e2e test files to address formatting issues, improve readability, and ensure alignment with the new Prettier configuration.
2026-04-13 09:13:27 +02:00

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";