Improve error messaging when only warnings issued #4465

This commit is contained in:
Lovell Fuller
2025-10-17 14:57:38 +01:00
parent b7fda60a85
commit c1c16ed3e6
6 changed files with 24 additions and 2 deletions

View File

@@ -103,4 +103,11 @@ describe('failOn', () => {
fs.createReadStream(fixtures.inputJpgTruncated).pipe(writable);
return writable.toBuffer();
});
it('converts warnings to error for GeoTIFF', async () => {
await assert.rejects(
sharp(fixtures.inputTiffGeo).toBuffer(),
/Unknown field with tag 33550/
);
});
});