Compare commits

...

2 Commits

Author SHA1 Message Date
admin ac729da784 chore(favicon): 使用预发布环境的图标
Docker Image / Quality and Bundle Budgets (push) Successful in 3s
Docker Image / Build and Push Docker Image (push) Successful in 21s
2026-07-20 17:26:35 +08:00
admin 10132652c7 test(e2e): match character mock requests reliably 2026-07-20 17:22:29 +08:00
4 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { apiEnvelope } from "../data/common";
import { chatCharactersResponse } from "../data/character"; import { chatCharactersResponse } from "../data/character";
export async function registerCharacterMocks(page: Page) { export async function registerCharacterMocks(page: Page) {
await page.route("**/api/characters**", async (route) => { await page.route(/\/api\/characters(?:\?.*)?$/, async (route) => {
await route.fulfill({ json: apiEnvelope(chatCharactersResponse) }); await route.fulfill({ json: apiEnvelope(chatCharactersResponse) });
}); });
} }
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 35 KiB