Files
openclaw/extensions/line/src/probe.contract.test.ts
2026-06-04 21:40:44 -04:00

11 lines
416 B
TypeScript

// Line tests cover probe.contract plugin behavior.
import type { BaseProbeResult } from "openclaw/plugin-sdk/channel-contract";
import { describe, expectTypeOf, it } from "vitest";
import type { LineProbeResult } from "./types.js";
describe("LINE probe contract", () => {
it("keeps public probe aligned with base contract", () => {
expectTypeOf<LineProbeResult>().toMatchTypeOf<BaseProbeResult>();
});
});