Files
openclaw/src/plugin-sdk/channel-contract-testing.test.ts
2026-04-30 02:58:40 +01:00

19 lines
509 B
TypeScript

import { expectChannelTurnDispatchResultContract } from "openclaw/plugin-sdk/channel-contract-testing";
import { describe, it } from "vitest";
describe("channel contract testing helpers", () => {
it("asserts shared channel turn dispatch visibility", () => {
expectChannelTurnDispatchResultContract(
{
queuedFinal: false,
counts: { tool: 0, block: 1, final: 0 },
},
{
visible: true,
final: false,
counts: { block: 1 },
},
);
});
});