19 lines
792 B
TypeScript
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)
|