fix(web): add mime field to produced-files test fixtures

Fixes Preflight typecheck failure on #3089 PR.
This commit is contained in:
wuyangfan 2026-05-27 21:56:39 +08:00
parent 144106e8ac
commit a094bc13b6

View file

@ -13,6 +13,7 @@ function file(name: string, kind: ProjectFile['kind']): ProjectFile {
size: 1,
mtime: 0,
kind,
mime: kind === 'sketch' ? 'application/json' : 'text/html',
};
}