fix(tests): close sockets to remove a Jest warning about resources outliving their tests (#2279)

This commit is contained in:
Daniel Kennedy
2026-02-13 12:05:37 -05:00
committed by GitHub
parent 8351a5d84d
commit 8c90e2297a
2 changed files with 5 additions and 0 deletions
@@ -238,6 +238,8 @@ describe('basics', () => {
'https://postman-echo.com/get'
)
expect(res.message.statusCode).toBe(200)
// Consume the response to close the socket
res.message.destroy()
})
it('does basic http delete request', async () => {