mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-03 05:12:15 +00:00
test: drop low-signal plugin runtime type contract
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
import { describe, expectTypeOf, it } from "vitest";
|
||||
import { createPluginRuntime } from "./index.js";
|
||||
import type { PluginRuntime } from "./types.js";
|
||||
|
||||
describe("plugin runtime type contract", () => {
|
||||
it("createPluginRuntime returns the declared PluginRuntime shape", () => {
|
||||
const runtime = createPluginRuntime();
|
||||
expectTypeOf(runtime).toMatchTypeOf<PluginRuntime>();
|
||||
expectTypeOf<PluginRuntime>().toMatchTypeOf(runtime);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user