fix: stabilize pty tests and media kind

This commit is contained in:
Peter Steinberger
2026-01-17 08:10:44 +00:00
parent cccd7c7b8e
commit c5239f6a8e
3 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ afterEach(() => {
test("exec supports pty output", async () => {
const tool = createExecTool({ allowBackground: false });
const result = await tool.execute("toolcall", {
command: "node -e \"process.stdout.write('ok')\"",
command: 'node -e "process.stdout.write(String.fromCharCode(111,107))"',
pty: true,
});