diff options
author | 2023-09-11 10:43:33 -0700 | |
---|---|---|
committer | 2023-09-11 10:43:33 -0700 | |
commit | 895f3824b5ff2e0e50deef400a8bc33f1a0c77e3 (patch) | |
tree | 592eb4499fff4079e26fcc9bd6b8681154fdbdbf | |
parent | 58e69ef9f4e99163c582c54fc96f672ea0a67f95 (diff) | |
download | bun-895f3824b5ff2e0e50deef400a8bc33f1a0c77e3.tar.gz bun-895f3824b5ff2e0e50deef400a8bc33f1a0c77e3.tar.zst bun-895f3824b5ff2e0e50deef400a8bc33f1a0c77e3.zip |
update test
-rw-r--r-- | test/js/node/http/node-http.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/http/node-http.test.ts b/test/js/node/http/node-http.test.ts index 6fa3e1831..f80a6c631 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(); }); |