fix: increase vectorize HEIF test timeout to 120s for CI

Vectorize + HEIF decoding exceeds 60s on CI runners because potrace
(CPU-intensive bitmap tracing) runs on top of slow HEIF decoding.
This commit is contained in:
SnapOtter
2026-05-01 15:24:19 +08:00
parent e466c06cad
commit b50e1e0fb3
+1 -1
View File
@@ -702,7 +702,7 @@ describe("vectorize", () => {
// ── HEIF input ───────────────────────────────────────────────
it("works with HEIF (sample.heif) input after decoding", { timeout: 60_000 }, async () => {
it("works with HEIF (sample.heif) input after decoding", { timeout: 120_000 }, async () => {
const HEIF = readFileSync(join(FIXTURES, "formats", "sample.heif"));
const { body, contentType } = createMultipartPayload([
{ name: "file", filename: "sample.heif", contentType: "image/heif", content: HEIF },