fix: increase timeout for max-size QR generation test in CI

The 10000x10000 QR code generation exceeds the default 30s timeout on
GitHub Actions runners. Bump to 120s to accommodate slower CI hardware.
This commit is contained in:
SnapOtter
2026-04-30 17:05:34 +08:00
parent b00ef20667
commit d727429e9f
+1 -1
View File
@@ -585,7 +585,7 @@ describe("QR Generate", () => {
// ── Max allowed size ───────────────────────────────────────────
it("generates QR code at maximum allowed size (10000)", async () => {
it("generates QR code at maximum allowed size (10000)", { timeout: 120_000 }, async () => {
const res = await app.inject({
method: "POST",
url: "/api/v1/tools/qr-generate",