refactoring

This commit is contained in:
2025-11-30 02:07:08 +01:00
parent 5c665ea2fe
commit af14526ae2
33 changed files with 4014 additions and 2131 deletions

View File

@@ -9,21 +9,21 @@
*/
// Adapters
export { MockBrowserAutomationAdapter } from './MockBrowserAutomationAdapter';
export { PlaywrightAutomationAdapter } from './PlaywrightAutomationAdapter';
export type { PlaywrightConfig } from './PlaywrightAutomationAdapter';
export { MockBrowserAutomationAdapter } from './engine/MockBrowserAutomationAdapter';
export { PlaywrightAutomationAdapter } from './core/PlaywrightAutomationAdapter';
export type { PlaywrightConfig, AutomationAdapterMode } from './core/PlaywrightAutomationAdapter';
// Services
export { FixtureServer, getFixtureForStep, getAllStepFixtureMappings } from './FixtureServer';
export type { IFixtureServer } from './FixtureServer';
export { FixtureServer, getFixtureForStep, getAllStepFixtureMappings } from './engine/FixtureServer';
export type { IFixtureServer } from './engine/FixtureServer';
// Template map and utilities
export {
IRacingTemplateMap,
getStepTemplates,
getStepName,
isModalStep,
getLoginIndicators,
getLogoutIndicators,
} from './templates/IRacingTemplateMap';
export type { IRacingTemplateMapType, StepTemplates } from './templates/IRacingTemplateMap';
IRacingTemplateMap,
getStepTemplates,
getStepName,
isModalStep,
getLoginIndicators,
getLogoutIndicators,
} from './engine/templates/IRacingTemplateMap';
export type { IRacingTemplateMapType, StepTemplates } from './engine/templates/IRacingTemplateMap';