Files
openclaw/extensions/discord/src/inbound-context.contract.test.ts
2026-04-20 17:59:51 +01:00

12 lines
445 B
TypeScript

import { expectChannelInboundContextContract } from "openclaw/plugin-sdk/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);
});
});