mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 23:11:37 +00:00
ACP: make final_only defer all projected output
This commit is contained in:
@@ -39,6 +39,20 @@ describe("acp stream settings", () => {
|
||||
expect(settings.tagVisibility.usage_update).toBe(true);
|
||||
});
|
||||
|
||||
it("accepts explicit deliveryMode=live override", () => {
|
||||
const settings = resolveAcpProjectionSettings(
|
||||
createAcpTestConfig({
|
||||
acp: {
|
||||
enabled: true,
|
||||
stream: {
|
||||
deliveryMode: "live",
|
||||
},
|
||||
},
|
||||
}),
|
||||
);
|
||||
expect(settings.deliveryMode).toBe("live");
|
||||
});
|
||||
|
||||
it("uses default tag visibility when no override is provided", () => {
|
||||
const settings = resolveAcpProjectionSettings(createAcpTestConfig());
|
||||
expect(isAcpTagVisible(settings, "tool_call")).toBe(true);
|
||||
|
||||
Reference in New Issue
Block a user