From 768825589fd0d36b64a66717ca6df2efd8fb7844 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 52fa155..9c3fcd7 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');