mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 11:50:43 +00:00
test(extensions): move channel contracts out of core
This commit is contained in:
9
extensions/imessage/src/probe.contract.test.ts
Normal file
9
extensions/imessage/src/probe.contract.test.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
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>();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user