perf(test): lower fast-mode nested output wait floor to 80ms

This commit is contained in:
Peter Steinberger
2026-02-22 09:43:20 +00:00
parent 36375f121f
commit 60773c124e

View File

@@ -1042,7 +1042,7 @@ export async function runSubagentAnnounceFlow(params: {
}
if (requesterDepth >= 1 && reply?.trim()) {
const minReplyChangeWaitMs = FAST_TEST_MODE ? 100 : 250;
const minReplyChangeWaitMs = FAST_TEST_MODE ? 80 : 250;
reply = await waitForSubagentOutputChange({
sessionKey: params.childSessionKey,
baselineReply: reply,