From e944f21ec02892265018cf7322bbb67b1d71e1bb Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 18 Jan 2026 11:03:27 +0000 Subject: [PATCH] test: drop core runtime import in matrix directory --- extensions/matrix/src/channel.directory.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/matrix/src/channel.directory.test.ts b/extensions/matrix/src/channel.directory.test.ts index ee41e0120..a88216b38 100644 --- a/extensions/matrix/src/channel.directory.test.ts +++ b/extensions/matrix/src/channel.directory.test.ts @@ -1,14 +1,14 @@ import { beforeEach, describe, expect, it } from "vitest"; +import type { PluginRuntime } from "clawdbot/plugin-sdk"; import type { CoreConfig } from "./types.js"; import { matrixPlugin } from "./channel.js"; import { setMatrixRuntime } from "./runtime.js"; -import { createPluginRuntime } from "../../../src/plugins/runtime/index.js"; describe("matrix directory", () => { beforeEach(() => { - setMatrixRuntime(createPluginRuntime()); + setMatrixRuntime({} as PluginRuntime); }); it("lists peers and groups from config", async () => {