chore(release): promote Private Zoom rename to pre
Docker Image / Build and Push Docker Image (push) Successful in 2m34s

This commit is contained in:
Codex
2026-07-22 18:31:36 +08:00
102 changed files with 695 additions and 519 deletions
@@ -42,7 +42,7 @@ test("guest user avatar returns to Profile after sign-in", async ({
});
for (const character of characters) {
test(`${character.displayName} avatar opens the matching Private Room`, async ({
test(`${character.displayName} avatar opens the matching Private Zoom`, async ({
page,
}) => {
await enterCharacterChat(page, character.slug);
@@ -50,13 +50,13 @@ for (const character of characters) {
await page
.getByRole("button", {
name: `Open ${character.displayName}'s private room`,
name: `Open ${character.displayName}'s private zoom`,
})
.last()
.click();
await expect(page).toHaveURL(
new RegExp(`/characters/${character.slug}/private-room(?:\\?.*)?$`),
new RegExp(`/characters/${character.slug}/private-zoom(?:\\?.*)?$`),
);
});
}