From 673c934f3772dbef84441568f6715d030ecc2604 Mon Sep 17 00:00:00 2001 From: asepharyana Date: Sat, 1 Aug 2026 20:43:00 +0700 Subject: [PATCH] test(e2e): 10min timeout for 1GB beforeAll download hook Bun's default hook timeout (5s) killed the Hetzner 1GB download in beforeAll. --- test/production-e2e.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/production-e2e.test.ts b/test/production-e2e.test.ts index 80bb52c..9d0fbd6 100644 --- a/test/production-e2e.test.ts +++ b/test/production-e2e.test.ts @@ -554,7 +554,7 @@ describe('1 GB large-file upload', () => { const r = await s3Request('PUT', `/${largeBucket}`); expect(r.status).toBe(200); createdBuckets.push(largeBucket); - }); + }, 600_000); if (skipLarge) { it('1 GB tests skipped — set S3_SECRET_KEY and ADMIN_API_TOKEN', () => {