fix: revert abort-leak test to original values (ITERATIONS=50, timeout=60000)

pull/21353/head
PabloGNU 2026-04-07 20:44:05 +02:00
parent f33ccc66fb
commit 7b7ef83b71
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const ctx = {
}
const MB = 1024 * 1024
const ITERATIONS = 20
const ITERATIONS = 50
const getHeapMB = () => {
Bun.gc(true)
@ -56,7 +56,7 @@ describe("memory: abort controller leak", () => {
expect(growth).toBeLessThan(ITERATIONS / 10)
},
})
}, 120000)
}, 60000)
test("compare closure vs bind pattern directly", async () => {
const ITERATIONS = 500