From 49d1090dbb0a7916ab463b668feff0d43b71db59 Mon Sep 17 00:00:00 2001 From: Alistair Smith Date: Wed, 4 Jun 2025 15:06:14 -0700 Subject: [PATCH] do the fetch(unrelated to test failure) --- test/js/node/worker_threads/worker_thread_check.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/js/node/worker_threads/worker_thread_check.ts b/test/js/node/worker_threads/worker_thread_check.ts index b922672a0e..6f82e9f986 100644 --- a/test/js/node/worker_threads/worker_thread_check.ts +++ b/test/js/node/worker_threads/worker_thread_check.ts @@ -31,8 +31,8 @@ const actions = { }); }, async ["fetch"](port: number) { - // const resp = await fetch("http://localhost:" + port); - // await resp.blob(); + const resp = await fetch("http://localhost:" + port); + await resp.blob(); }, };