mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-04 22:01:15 +00:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const mocks = vi.hoisted(() => ({
|
|
createConfigIO: vi.fn().mockReturnValue({
|
|
configPath: "/tmp/openclaw-dev/openclaw.json",
|
|
}),
|
|
}));
|
|
|
|
vi.mock("./io.js", () => ({
|
|
createConfigIO: mocks.createConfigIO,
|
|
}));
|
|
|
|
let formatConfigPath: typeof import("./logging.js").formatConfigPath;
|
|
let logConfigUpdated: typeof import("./logging.js").logConfigUpdated;
|
|
|
|
beforeAll(async () => {
|
|
({ formatConfigPath, logConfigUpdated } = await import("./logging.js"));
|
|
});
|
|
|
|
beforeEach(() => {
|
|
mocks.createConfigIO.mockClear();
|
|
});
|
|
|
|
describe("config logging", () => {
|
|
it("formats the live config path when no explicit path is provided", () => {
|
|
expect(formatConfigPath()).toBe("/tmp/openclaw-dev/openclaw.json");
|
|
});
|
|
|
|
it("logs the live config path when no explicit path is provided", () => {
|
|
const runtime = { log: vi.fn() };
|
|
logConfigUpdated(runtime as never);
|
|
expect(runtime.log).toHaveBeenCalledWith("Updated /tmp/openclaw-dev/openclaw.json");
|
|
});
|
|
});
|