(name: string, type: string, size = 32)
| 14 | } from '@/lib/cloud-agent/constants'; |
| 15 | |
| 16 | function createFile(name: string, type: string, size = 32) { |
| 17 | return new File([new Uint8Array(size)], name, { type }); |
| 18 | } |
| 19 | |
| 20 | describe('cloud agent attachment classification', () => { |
| 21 | it('normalizes Markdown filenames only for browser text-compatible MIME values', () => { |
no outgoing calls
no test coverage detected