diff --git a/test/js/node/http/node-http.test.ts b/test/js/node/http/node-http.test.ts index 6fa3e18318..f80a6c631a 100644 --- a/test/js/node/http/node-http.test.ts +++ b/test/js/node/http/node-http.test.ts @@ -870,7 +870,7 @@ describe("node:http", () => { }); }); - test("should listen on port if string, issue#4582", () => { + test("should listen on port if string, issue#4582", done => { const server = createServer((req, res) => { res.end(); });