fix: apply model extra params without overwriting stream (#732) (thanks @peschee)

This commit is contained in:
Peter Steinberger
2026-01-11 23:55:14 +00:00
parent d9960d83c1
commit 4b51c96e4e
7 changed files with 172 additions and 54 deletions

View File

@@ -203,12 +203,9 @@ describe("voice-call plugin", () => {
resolvePath: (p: string) => p,
});
await program.parseAsync(
["node", "cli", "voicecall", "start", "--to", "+1"],
{
from: "user",
},
);
await program.parseAsync(["voicecall", "start", "--to", "+1"], {
from: "user",
});
expect(logSpy).toHaveBeenCalled();
logSpy.mockRestore();
});