fix: increase all HEIF/HEIC integration test timeouts to 120s for CI

The sharpening HEIF test was timing out at 60s in GitHub Actions.
Bumps all remaining HEIF/HEIC test timeouts from 60s to 120s across
14 integration test files for consistency with vectorize.
This commit is contained in:
SnapOtter
2026-05-01 19:05:51 +08:00
parent 66211ed6a7
commit 332c79f4ce
14 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -573,7 +573,7 @@ describe("Border", () => {
expect(result.processedSize).toBeGreaterThan(0);
});
it("handles HEIF input (motorcycle.heif)", { timeout: 60_000 }, async () => {
it("handles HEIF input (motorcycle.heif)", { timeout: 120_000 }, async () => {
const HEIF = readFileSync(join(FIXTURES, "content", "motorcycle.heif"));
const { body, contentType } = createMultipartPayload([
{ name: "file", filename: "photo.heif", contentType: "image/heif", content: HEIF },