chore: rename project to clawdbot

This commit is contained in:
Peter Steinberger
2026-01-04 14:32:47 +00:00
parent d48dc71fa4
commit 246adaa119
841 changed files with 4590 additions and 4328 deletions

View File

@@ -111,7 +111,7 @@ describe("web session", () => {
});
it("does not clobber creds backup when creds.json is corrupted", async () => {
const credsSuffix = path.join(".clawdis", "credentials", "creds.json");
const credsSuffix = path.join(".clawdbot", "credentials", "creds.json");
const copySpy = vi
.spyOn(fsSync, "copyFileSync")
@@ -191,8 +191,8 @@ describe("web session", () => {
});
it("rotates creds backup when creds.json is valid JSON", async () => {
const credsSuffix = path.join(".clawdis", "credentials", "creds.json");
const backupSuffix = path.join(".clawdis", "credentials", "creds.json.bak");
const credsSuffix = path.join(".clawdbot", "credentials", "creds.json");
const backupSuffix = path.join(".clawdbot", "credentials", "creds.json.bak");
const copySpy = vi
.spyOn(fsSync, "copyFileSync")