fix(athena): update stale test snapshots and keyword-detector log assertions

This commit is contained in:
ismeth
2026-02-19 14:14:11 +01:00
committed by YeonGyu-Kim
parent 8c71221595
commit f068494fb9
2 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -768,7 +768,7 @@ describe("keyword-detector agent-specific ultrawork messages", () => {
expect(textPart!.text).not.toContain("[search-mode]")
expect(textPart!.text).not.toContain("MAXIMIZE SEARCH EFFORT")
const skipLog = logCalls.find(c => c.msg.includes("Skipping all keywords for Athena"))
const skipLog = logCalls.find(c => c.msg.includes("Skipping keywords for Athena"))
expect(skipLog).toBeDefined()
clearSessionAgent(sessionID)
@@ -793,7 +793,7 @@ describe("keyword-detector agent-specific ultrawork messages", () => {
expect(textPart!.text).toBe("search for the implementation")
expect(textPart!.text).not.toContain("[search-mode]")
const skipLog = logCalls.find(c => c.msg.includes("Skipping all keywords for Athena"))
const skipLog = logCalls.find(c => c.msg.includes("Skipping keywords for Athena"))
expect(skipLog).toBeDefined()
})
})