fix(gui): harden multimodal image attachments

This commit is contained in:
Yichen Jiang
2026-07-23 19:38:37 +08:00
parent eea595fcb4
commit 580e05b794
61 changed files with 1700 additions and 214 deletions

View File

@@ -50,6 +50,7 @@ describe('web boot chain (keyless, real carrier)', () => {
port,
distIndex: DIST_INDEX,
apiHandler,
maxRequestBodyBytes: 32 * 1024 * 1024,
webPlugins: {
snapshot: () => ROWS,
clientPath: id => (id === ROWS[0]!.id ? LIVE_BUNDLE : undefined),
@@ -108,6 +109,7 @@ describe('web boot chain success pass (keyless, production plugin chain, ?fixtur
port,
distIndex: DIST_INDEX,
apiHandler,
maxRequestBodyBytes: 32 * 1024 * 1024,
webPlugins: { snapshot: () => rows, clientPath: id => byId.get(id) },
}, (err) => { pageErrors.push(`server: ${String(err)}`) })
browser = await chromium.launch()