type union

This commit is contained in:
Aiden Cline
2026-01-07 17:11:57 -06:00
parent 68219475c0
commit eb8c34735f
5 changed files with 12 additions and 14 deletions
+2 -2
View File
@@ -248,7 +248,7 @@ describe("tool.bash truncation", () => {
)
expect((result.metadata as any).truncated).toBe(true)
expect(result.output).toContain("truncated")
expect(result.output).toContain("The tool output was too large")
expect(result.output).toContain("The tool call succeeded but the output was truncated")
},
})
})
@@ -268,7 +268,7 @@ describe("tool.bash truncation", () => {
)
expect((result.metadata as any).truncated).toBe(true)
expect(result.output).toContain("truncated")
expect(result.output).toContain("The tool output was too large")
expect(result.output).toContain("The tool call succeeded but the output was truncated")
},
})
})