From d3c80a8b8e424346ee6aec47a7ea577db9b467f9 Mon Sep 17 00:00:00 2001 From: Daniel Lopretto Date: Fri, 30 Oct 2020 02:54:42 -0400 Subject: [PATCH] Remove the skipping of the `socket` http test (#3364) Co-authored-by: Pilot --- test/unit/adapters/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/adapters/http.js b/test/unit/adapters/http.js index 52fa155392..9c3fcd7fbf 100644 --- a/test/unit/adapters/http.js +++ b/test/unit/adapters/http.js @@ -368,7 +368,7 @@ describe('supports http with nodejs', function () { }); }); - it.skip('should support sockets', function (done) { + it('should support sockets', function (done) { server = net.createServer(function (socket) { socket.on('data', function () { socket.end('HTTP/1.1 200 OK\r\n\r\n');