mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 10:40:42 +00:00
12 lines
445 B
TypeScript
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);
|
|
});
|
|
});
|