mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-24 04:59:49 +00:00
10 lines
358 B
TypeScript
10 lines
358 B
TypeScript
import type { BaseProbeResult } from "openclaw/plugin-sdk/channel-contract";
|
|
import { describe, expectTypeOf, it } from "vitest";
|
|
import type { SignalProbe } from "./probe.js";
|
|
|
|
describe("Signal probe contract", () => {
|
|
it("keeps public probe aligned with base contract", () => {
|
|
expectTypeOf<SignalProbe>().toMatchTypeOf<BaseProbeResult>();
|
|
});
|
|
});
|