mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 19:32:27 +00:00
Tests: shim config runtime for capability contracts
This commit is contained in:
@@ -41,6 +41,9 @@ function applyVitestCapabilityAliasOverrides(params: {
|
||||
"openclaw/plugin-sdk/llm-task": fileURLToPath(
|
||||
new URL("./capability-runtime-vitest-shims/llm-task.ts", import.meta.url),
|
||||
),
|
||||
"openclaw/plugin-sdk/config-runtime": fileURLToPath(
|
||||
new URL("./capability-runtime-vitest-shims/config-runtime.ts", import.meta.url),
|
||||
),
|
||||
"openclaw/plugin-sdk/media-runtime": fileURLToPath(
|
||||
new URL("./capability-runtime-vitest-shims/media-runtime.ts", import.meta.url),
|
||||
),
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
import { resolveActiveTalkProviderConfig } from "../../config/talk.js";
|
||||
import type { OpenClawConfig } from "../../config/types.js";
|
||||
|
||||
export { resolveActiveTalkProviderConfig };
|
||||
|
||||
export function getRuntimeConfigSnapshot(): OpenClawConfig | null {
|
||||
return null;
|
||||
}
|
||||
Reference in New Issue
Block a user