File size: 291 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import type { RuntimeEnv } from "openclaw/plugin-sdk/test-utils";
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}`);
}),
};
}
|