From 2a72563eaa938fbbf97c01a6104b5fd91bf282d2 Mon Sep 17 00:00:00 2001 From: tsctx <91457664+tsctx@users.noreply.github.com> Date: Thu, 9 May 2024 15:01:26 +0900 Subject: [PATCH] test: reduce the number of requests in `fire-and-forget.js` (#3229) --- test/fetch/fire-and-forget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fetch/fire-and-forget.js b/test/fetch/fire-and-forget.js index b72365c4adb..d8090885eb8 100644 --- a/test/fetch/fire-and-forget.js +++ b/test/fetch/fire-and-forget.js @@ -33,7 +33,7 @@ test('does not need the body to be consumed to continue', { timeout: 180_000, sk const batch = 50 const delay = 0 let total = 0 - while (total < 10000) { + while (total < 5000) { // eslint-disable-next-line no-undef gc(true) const array = new Array(batch)