mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-05 19:12:56 +00:00
12 lines
462 B
TypeScript
12 lines
462 B
TypeScript
import { expectChannelInboundContextContract } from "openclaw/plugin-sdk/channel-contract-testing";
|
|
import { describe, it } from "vitest";
|
|
import { buildFinalizedDiscordDirectInboundContext } from "./monitor/inbound-context.test-helpers.js";
|
|
|
|
describe("Discord inbound context contract", () => {
|
|
it("keeps inbound context finalized", () => {
|
|
const ctx = buildFinalizedDiscordDirectInboundContext();
|
|
|
|
expectChannelInboundContextContract(ctx);
|
|
});
|
|
});
|