diff options
author | 2023-01-22 19:31:08 -0300 | |
---|---|---|
committer | 2023-01-22 14:31:08 -0800 | |
commit | 481dbf7c6e1a900136f6988218f3613720b31f97 (patch) | |
tree | ce58bfa8bf70c4462137b450d567903247fb0956 /test/bun.js/resolve-dns.test.ts | |
parent | 8d692f1511f4c017d0fcef94032f4d89d404f2a8 (diff) | |
download | bun-481dbf7c6e1a900136f6988218f3613720b31f97.tar.gz bun-481dbf7c6e1a900136f6988218f3613720b31f97.tar.zst bun-481dbf7c6e1a900136f6988218f3613720b31f97.zip |
feat(dns) resolveSrv (#1870)
* initial steps
* in-progress resolveSrv support
* fix memory leak and ZigGlobalObject
* promise.resolve + fix priority and weight mistake
* fix node dns export
* little better test
* add poll_ref to keep alive loop in callback for resolveSrv and lookup
* add test for error case in resolveSrc
* fix Bun.dns.resolveSrv type
Diffstat (limited to 'test/bun.js/resolve-dns.test.ts')
-rw-r--r-- | test/bun.js/resolve-dns.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/resolve-dns.test.ts b/test/bun.js/resolve-dns.test.ts index f0db49b20..225a11e2a 100644 --- a/test/bun.js/resolve-dns.test.ts +++ b/test/bun.js/resolve-dns.test.ts @@ -51,4 +51,4 @@ describe("dns.lookup", () => { }, ); } -}); +});
\ No newline at end of file |