From a094bc13b6a5e84465954b0eb1deb64820a74fb0 Mon Sep 17 00:00:00 2001 From: wuyangfan <1102042793@qq.com> Date: Wed, 27 May 2026 21:56:39 +0800 Subject: [PATCH] fix(web): add mime field to produced-files test fixtures Fixes Preflight typecheck failure on #3089 PR. --- apps/web/tests/produced-files.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/tests/produced-files.test.ts b/apps/web/tests/produced-files.test.ts index d30621315..9f554fd55 100644 --- a/apps/web/tests/produced-files.test.ts +++ b/apps/web/tests/produced-files.test.ts @@ -13,6 +13,7 @@ function file(name: string, kind: ProjectFile['kind']): ProjectFile { size: 1, mtime: 0, kind, + mime: kind === 'sketch' ? 'application/json' : 'text/html', }; }