test: add QOI codec unit tests and E2E GUI format support tests

- QOI codec: 16 tests covering encode/decode round-trips, error handling, fixture validation
- E2E: 28 tests for format upload/resize, convert new outputs, dropdown verification,
  HEIC-to-JPG flow, and exotic format upload acceptance
This commit is contained in:
SnapOtter
2026-05-08 15:16:06 +08:00
parent 44608733c6
commit 93a246ce23
3 changed files with 245 additions and 1 deletions
-1
View File
@@ -85,7 +85,6 @@ export async function decodeToSharpCompat(
case "pgm":
case "pbm":
return decodeNetpbm(buffer, format);
return decodeQoi(buffer);
default:
return buffer;
}