mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-24 11:25:50 -06:00
11 lines
420 B
TypeScript
11 lines
420 B
TypeScript
// Imessage tests cover probe.contract plugin behavior.
|
|
import type { BaseProbeResult } from "openclaw/plugin-sdk/channel-contract";
|
|
import { describe, expectTypeOf, it } from "vitest";
|
|
import type { IMessageProbe } from "./probe.js";
|
|
|
|
describe("iMessage probe contract", () => {
|
|
it("keeps public probe aligned with base contract", () => {
|
|
expectTypeOf<IMessageProbe>().toMatchTypeOf<BaseProbeResult>();
|
|
});
|
|
});
|