style: format message-runtime files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Eyejoker
2026-03-21 12:29:12 +09:00
parent 9b741be902
commit 2c8260135f
2 changed files with 7 additions and 2 deletions

View File

@@ -858,7 +858,9 @@ describe('createMessageRuntime', () => {
}, },
]); ]);
vi.mocked(channel.sendAndTrack!).mockResolvedValueOnce('progress-follow-up'); vi.mocked(channel.sendAndTrack!).mockResolvedValueOnce(
'progress-follow-up',
);
vi.mocked(agentRunner.runAgentProcess).mockImplementation( vi.mocked(agentRunner.runAgentProcess).mockImplementation(
async (_group, _input, _onProcess, onOutput) => { async (_group, _input, _onProcess, onOutput) => {

View File

@@ -625,7 +625,10 @@ export function createMessageRuntime(deps: MessageRuntimeDeps): {
}, },
'Promoting last progress output to final message after agent completion', 'Promoting last progress output to final message after agent completion',
); );
await channel.sendMessage(chatJid, latestModelProgressTextForFinalFallback); await channel.sendMessage(
chatJid,
latestModelProgressTextForFinalFallback,
);
finalOutputSentToUser = true; finalOutputSentToUser = true;
latestModelProgressTextForFinalFallback = null; latestModelProgressTextForFinalFallback = null;
} }