Files
openclaw/extensions/line/src/probe.contract.test.ts
2026-04-20 17:59:51 +01:00

10 lines
364 B
TypeScript

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>();
});
});