aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/socket/socket.test.ts (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-12Update socket.test.tsGravatar Jarred Sumner 1-6/+1
2023-01-09Add test for Bun.listen throwingGravatar Jarred Sumner 1-0/+17
2023-01-07Workaround macOS issueGravatar Jarred Sumner 1-1/+1
2023-01-07[Bun.connect] Fix bug where connect() Promise wouldn't reject on a ↵Gravatar Jarred Sumner 1-12/+58
connection error
2023-01-02[socket] handle `connectError` (#1705)Gravatar Alex Lam S.L 1-1/+38
assorted clean-ups & fixes
2023-01-02fix lingering process by dead sockets (#1700)Gravatar Alex Lam S.L 1-0/+34
`Bun.listen()` and `Bun.connect()` would create sockets that under certain conditions with calls to `.end()` or `.stop`, prevents the process from exiting gracefully.