refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -22,7 +22,7 @@ describe("sandbox explain command", () => {
sandbox: { tools: { deny: ["browser"] } },
elevated: { enabled: true, allowFrom: { whatsapp: ["*"] } },
},
session: { store: "/tmp/moltbot-test-sessions-{agentId}.json" },
session: { store: "/tmp/openclaw-test-sessions-{agentId}.json" },
};
const { sandboxExplainCommand } = await import("./sandbox-explain.js");
@@ -36,7 +36,7 @@ describe("sandbox explain command", () => {
const out = logs.join("");
const parsed = JSON.parse(out);
expect(parsed).toHaveProperty("docsUrl", "https://docs.molt.bot/sandbox");
expect(parsed).toHaveProperty("docsUrl", "https://docs.openclaw.ai/sandbox");
expect(parsed).toHaveProperty("sandbox.mode", "all");
expect(parsed).toHaveProperty("sandbox.tools.sources.allow.source");
expect(Array.isArray(parsed.fixIt)).toBe(true);