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

@@ -42,7 +42,7 @@ function resetRuntime() {
function mockSnapshot(token = "abc") {
mocks.readConfigFileSnapshot.mockResolvedValue({
path: "/tmp/moltbot.json",
path: "/tmp/openclaw.json",
exists: true,
raw: "{}",
parsed: {},
@@ -87,7 +87,7 @@ describe("dashboardCommand", () => {
expect(mocks.copyToClipboard).toHaveBeenCalledWith("http://127.0.0.1:18789/?token=abc123");
expect(mocks.openUrl).toHaveBeenCalledWith("http://127.0.0.1:18789/?token=abc123");
expect(runtime.log).toHaveBeenCalledWith(
"Opened in your browser. Keep that tab to control Moltbot.",
"Opened in your browser. Keep that tab to control OpenClaw.",
);
});