Files
moltbot/extensions/test-utils/runtime-env.ts
2026-02-23 05:45:54 +00:00

13 lines
280 B
TypeScript

import type { RuntimeEnv } from "openclaw/plugin-sdk";
import { vi } from "vitest";
export function createRuntimeEnv(): RuntimeEnv {
return {
log: vi.fn(),
error: vi.fn(),
exit: vi.fn((code: number): never => {
throw new Error(`exit ${code}`);
}),
};
}