From 568ab792baae2e24a8ca5fe6fc301f70ec88b009 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Sat, 4 Oct 2025 02:37:21 -0700 Subject: [PATCH] Update fetch.stream.test.ts --- test/js/web/fetch/fetch.stream.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/js/web/fetch/fetch.stream.test.ts b/test/js/web/fetch/fetch.stream.test.ts index dcff063e39..2e765823c0 100644 --- a/test/js/web/fetch/fetch.stream.test.ts +++ b/test/js/web/fetch/fetch.stream.test.ts @@ -26,7 +26,7 @@ const bigText = Buffer.alloc(1 * 1024 * 1024, "a"); const smallText = Buffer.alloc(16 * "Hello".length, "Hello"); const empty = Buffer.alloc(0); -describe.concurrent("fetch() with streaming", () => { +describe.concurrent(() => { [100, 50, 20, 0, -1].forEach(timeout => { ["pull", "start"].forEach(via => { it(`should be able to fail properly when reading from readable stream via ${via} with timeout ${timeout}`, async () => {