refactor(private-zone): use canonical product name

This commit is contained in:
Codex
2026-07-23 10:53:41 +08:00
parent 4639acf232
commit 9ca56c2a04
103 changed files with 569 additions and 569 deletions
@@ -71,7 +71,7 @@ describe("local character catalog", () => {
expect(snapshot.catalog.getById("maya-tan")).toMatchObject({
displayName: "Maya Backend",
assets: { avatar: "/images/avatar/maya.png" },
capabilities: { chat: true, privateZoom: false, tip: true },
capabilities: { chat: true, privateZone: false, tip: true },
});
expect(snapshot.defaultCharacter.id).toBe("elio");
});
@@ -101,7 +101,7 @@ describe("local character catalog", () => {
for (const character of CHARACTERS) {
expect(character.capabilities).toEqual({
chat: true,
privateZoom: true,
privateZone: true,
tip: true,
});
expect(character.tagline.length).toBeGreaterThan(0);