wip
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { IAutomationEngine, ValidationResult } from '../../../application/ports/IAutomationEngine';
|
||||
import { HostedSessionConfig } from '../../../domain/entities/HostedSessionConfig';
|
||||
import { StepId } from '../../../domain/value-objects/StepId';
|
||||
import type { IBrowserAutomation } from '../../../application/ports/IScreenAutomation';
|
||||
import { ISessionRepository } from '../../../application/ports/ISessionRepository';
|
||||
import { IAutomationEngine, ValidationResult } from '../../../../application/ports/IAutomationEngine';
|
||||
import { HostedSessionConfig } from '../../../../domain/entities/HostedSessionConfig';
|
||||
import { StepId } from '../../../../domain/value-objects/StepId';
|
||||
import type { IBrowserAutomation } from '../../../../application/ports/IScreenAutomation';
|
||||
import { ISessionRepository } from '../../../../application/ports/ISessionRepository';
|
||||
import { getStepName } from './templates/IRacingTemplateMap';
|
||||
|
||||
/**
|
||||
@@ -14,12 +14,13 @@ import { getStepName } from './templates/IRacingTemplateMap';
|
||||
* 3. Managing session state transitions
|
||||
*
|
||||
* This is a REAL implementation that uses actual automation,
|
||||
* not a mock. Currently delegates to deprecated nut.js adapters for
|
||||
* screen automation operations.
|
||||
* not a mock. Historically delegated to legacy native screen
|
||||
* automation adapters, but those are no longer part of the
|
||||
* supported stack.
|
||||
*
|
||||
* @deprecated This adapter currently delegates to the deprecated NutJsAutomationAdapter.
|
||||
* Should be updated to use Playwright browser automation when available.
|
||||
* See docs/ARCHITECTURE.md for the updated automation strategy.
|
||||
* @deprecated This adapter should be updated to use Playwright
|
||||
* browser automation when available. See docs/ARCHITECTURE.md
|
||||
* for the updated automation strategy.
|
||||
*/
|
||||
export class AutomationEngineAdapter implements IAutomationEngine {
|
||||
private isRunning = false;
|
||||
|
||||
Reference in New Issue
Block a user