mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
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:
@@ -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}`,
|
||||
|
||||
Reference in New Issue
Block a user