perf: optimize messaging plugin tests

This commit is contained in:
Peter Steinberger
2026-04-11 13:16:51 +01:00
parent c7f18d9278
commit 5915d7cb6b
26 changed files with 693 additions and 263 deletions

View File

@@ -3,8 +3,8 @@ import { createLazyRuntimeNamedExport } from "openclaw/plugin-sdk/lazy-runtime";
import type { ResolvedMatrixAccount } from "./matrix/accounts.js";
const loadMatrixChannelRuntime = createLazyRuntimeNamedExport(
() => import("./channel.runtime.js"),
"matrixChannelRuntime",
() => import("./resolver.runtime.js"),
"matrixResolverRuntime",
);
type MatrixResolver = NonNullable<ChannelPlugin<ResolvedMatrixAccount>["resolver"]>;