feat(M4-013,M5-001,M5-002,M5-003): routing e2e tests, agent config loading, model+agent switching #323

Merged
jason.woltje merged 2 commits from feat/m4-m5-verify-sessions into main 2026-03-23 01:09:10 +00:00
2 changed files with 0 additions and 9 deletions
Showing only changes of commit 21c045559d - Show all commits

View File

@@ -72,7 +72,6 @@ const mockChatGateway = {
broadcastSessionInfo: vi.fn(),
};
function buildService(): CommandExecutorService {
return new CommandExecutorService(
mockRegistry as never,

View File

@@ -55,14 +55,6 @@ function buildRegistry(): CommandRegistryService {
return svc;
}
const mockBrain = {
agents: {
findByName: vi.fn().mockResolvedValue(undefined),
findById: vi.fn().mockResolvedValue(undefined),
create: vi.fn(),
},
};
function buildExecutor(registry: CommandRegistryService): CommandExecutorService {
return new CommandExecutorService(
registry as never,