Skip to content

Commit

Permalink
Remove the skipping of the socket http test (#3364)
Browse files Browse the repository at this point in the history
Co-authored-by: Pilot <timemachine@ctrl-c.club>
  • Loading branch information
timemachine3030 and Pilot committed Oct 30, 2020
1 parent 820fe6e commit 7688255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/adapters/http.js
Expand Up @@ -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');
Expand Down

0 comments on commit 7688255

Please sign in to comment.