(name: string)
| 622 | |
| 623 | describe('file attachment', () => { |
| 624 | const imageFile = (name: string) => new File(['foo'], `${name}.png`, {type: 'image/png'}) |
| 625 | |
| 626 | const mockUrl = (file: File) => `https://example.com/${encodeURIComponent(file.name)}` |
| 627 |
no outgoing calls
no test coverage detected