working companion prototype

This commit is contained in:
2025-11-24 23:32:36 +01:00
parent e7978024d7
commit e2bea9a126
175 changed files with 23227 additions and 3519 deletions

View File

@@ -199,8 +199,8 @@ describe('MockBrowserAutomationAdapter Integration Tests', () => {
expect(result.metadata?.wasModalStep).toBe(true);
});
it('should execute step 18 (final step)', async () => {
const stepId = StepId.create(18);
it('should execute step 17 (final step)', async () => {
const stepId = StepId.create(17);
const config = {
sessionName: 'Test Race',
trackId: 'spa',
@@ -210,7 +210,7 @@ describe('MockBrowserAutomationAdapter Integration Tests', () => {
const result = await adapter.executeStep(stepId, config);
expect(result.success).toBe(true);
expect(result.metadata?.stepId).toBe(18);
expect(result.metadata?.stepId).toBe(17);
expect(result.metadata?.shouldStop).toBe(true);
});