From b50e1e0fb39876c029a370f9abe45347c9f95ed0 Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Fri, 1 May 2026 15:24:19 +0800 Subject: [PATCH] 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. --- tests/integration/vectorize.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/vectorize.test.ts b/tests/integration/vectorize.test.ts index 2d65b7f8..98505990 100644 --- a/tests/integration/vectorize.test.ts +++ b/tests/integration/vectorize.test.ts @@ -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 },