From 3c69e1ea4efcc3da43232f25bbd10187ca308b58 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 1 Apr 2026 02:29:18 +0100 Subject: [PATCH] test: drop low-signal plugin runtime type contract --- src/plugins/runtime/types.contract.test.ts | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/plugins/runtime/types.contract.test.ts diff --git a/src/plugins/runtime/types.contract.test.ts b/src/plugins/runtime/types.contract.test.ts deleted file mode 100644 index 8b4ce95c585..00000000000 --- a/src/plugins/runtime/types.contract.test.ts +++ /dev/null @@ -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(); - expectTypeOf().toMatchTypeOf(runtime); - }); -});