mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-26 16:41:49 +00:00
31 lines
805 B
TypeScript
31 lines
805 B
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const loadConfigMock = vi.hoisted(() => vi.fn());
|
|
|
|
vi.mock("../config/config.js", () => ({
|
|
loadConfig: loadConfigMock,
|
|
}));
|
|
|
|
describe("agents/context eager warmup", () => {
|
|
const originalArgv = process.argv.slice();
|
|
|
|
beforeEach(() => {
|
|
vi.resetModules();
|
|
loadConfigMock.mockReset();
|
|
});
|
|
|
|
afterEach(() => {
|
|
process.argv = originalArgv.slice();
|
|
});
|
|
|
|
it.each([
|
|
["models", ["node", "openclaw", "models", "set", "openai/gpt-5.4"]],
|
|
["agent", ["node", "openclaw", "agent", "--message", "ok"]],
|
|
])("does not eager-load config for %s commands on import", async (_label, argv) => {
|
|
process.argv = argv;
|
|
await import("./context.js");
|
|
|
|
expect(loadConfigMock).not.toHaveBeenCalled();
|
|
});
|
|
});
|