test: drop low-signal plugin runtime type contract

This commit is contained in:
Peter Steinberger 2026-04-01 02:29:18 +01:00
parent 0614d992a4
commit 3c69e1ea4e
No known key found for this signature in database
1 changed files with 0 additions and 11 deletions

View File

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