(data: Uint8Array, type = 'image/jpeg')
| 23 | } |
| 24 | |
| 25 | function makeMockBlob(data: Uint8Array, type = 'image/jpeg'): Blob { |
| 26 | return buildReadableBinaryBlob({ contents: data, type }); |
| 27 | } |
| 28 | |
| 29 | function installImageConversionMocks() { |
| 30 | const convertOptions: Array<{ type?: string; quality?: number }> = []; |
no test coverage detected