fix: increase format-matrix test timeout for HEIF/CLI-decoded formats

HEIF and CLI-decoded formats (DNG, PSD, EXR, HDR, TGA) need external
decoders that are slow on CI runners. Bump timeout from 90s to 180s
to prevent flaky failures. Also extend timeout to CLI-decoded formats
which have the same decode overhead.
This commit is contained in:
SnapOtter
2026-04-27 02:25:13 +08:00
parent 4e16992a50
commit 02a84b8741
+1 -1
View File
@@ -381,7 +381,7 @@ describe("Cross-format matrix", () => {
// Skip "Convert to PNG" when input is already PNG (no-op conversion)
if (tool.id === "convert" && fmt.name === "PNG") continue;
const perTestTimeout = fmt.needsHeifDecoder ? 90_000 : undefined;
const perTestTimeout = fmt.needsHeifDecoder || fmt.needsCliDecoder ? 180_000 : undefined;
it(
`${tool.label}`,