Format files touched by reviewer runtime cleanup

This commit is contained in:
ejclaw
2026-04-06 07:56:59 +09:00
parent aaa9eeb50a
commit bf55ad65fd
5 changed files with 17 additions and 10 deletions

View File

@@ -1697,7 +1697,9 @@ describe('runAgentForGroup Claude rotation', () => {
vi.mocked(agentRunner.runAgentProcess)
.mockImplementationOnce(async (_group, input) => {
expect(input.sessionId).toBe('stale-session-id');
throw new Error('No conversation found with session ID: stale-session-id');
throw new Error(
'No conversation found with session ID: stale-session-id',
);
})
.mockImplementationOnce(async (_group, input, _onProcess, onOutput) => {
expect(input.sessionId).toBeUndefined();