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

Vectorize + HEIF decoding is particularly slow on CI runners.
120s was not enough; bump to 180s.
This commit is contained in:
SnapOtter
2026-05-01 20:25:12 +08:00
parent d1f2f63453
commit 69deeb075f
+1 -1
View File
@@ -702,7 +702,7 @@ describe("vectorize", () => {
// ── HEIF input ───────────────────────────────────────────────
it("works with HEIF (sample.heif) input after decoding", { timeout: 120_000 }, async () => {
it("works with HEIF (sample.heif) input after decoding", { timeout: 180_000 }, async () => {
const HEIF = readFileSync(join(FIXTURES, "formats", "sample.heif"));
const { body, contentType } = createMultipartPayload([
{ name: "file", filename: "sample.heif", contentType: "image/heif", content: HEIF },