Files
gridpilot.gg/packages/infrastructure/adapters/automation/index.ts
2025-12-01 17:27:56 +01:00

19 lines
792 B
TypeScript

/**
* Automation adapters for browser automation.
*
* Exports:
* - MockBrowserAutomationAdapter: Mock adapter for testing
* - PlaywrightAutomationAdapter: Browser automation via Playwright
* - FixtureServer: HTTP server for serving fixture HTML files
*/
// Adapters
export { MockBrowserAutomationAdapter } from './engine/MockBrowserAutomationAdapter';
export { PlaywrightAutomationAdapter } from './core/PlaywrightAutomationAdapter';
export type { PlaywrightConfig, AutomationAdapterMode } from './core/PlaywrightAutomationAdapter';
// Services
export { FixtureServer, getFixtureForStep, getAllStepFixtureMappings } from './engine/FixtureServer';
export type { IFixtureServer } from './engine/FixtureServer';
// Template map and utilities removed (image-based automation deprecated)