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

@@ -8,7 +8,7 @@ import { copyA2uiAssets } from "../../scripts/canvas-a2ui-copy.js";
describe("canvas a2ui copy", () => {
it("throws a helpful error when assets are missing", async () => {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-a2ui-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-a2ui-"));
try {
await expect(copyA2uiAssets({ srcDir: dir, outDir: path.join(dir, "out") })).rejects.toThrow(
@@ -20,7 +20,7 @@ describe("canvas a2ui copy", () => {
});
it("copies bundled assets to dist", async () => {
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-a2ui-"));
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-a2ui-"));
const srcDir = path.join(dir, "src");
const outDir = path.join(dir, "dist");