From 88250c603d3c992681be6e078daa103a719ed2e2 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 12 Sep 2015 14:10:41 -0700 Subject: [PATCH] test: remove disabled test Remove test file that has been in disabled from its very first commit (9ccf0e52) in 2011. It is a test for https://github.com/nodejs/node-v0.x-archive/issues/670 from 2011. There are no assertions in the test. In that regard, it is more debugging code than a test. --- test/disabled/GH-670.js | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 test/disabled/GH-670.js diff --git a/test/disabled/GH-670.js b/test/disabled/GH-670.js deleted file mode 100644 index 28f90a72ad487a..00000000000000 --- a/test/disabled/GH-670.js +++ /dev/null @@ -1,39 +0,0 @@ -'use strict'; -var common = require('../common'); -var assert = require('assert'); -var https = require('https'); -var tls = require('tls'); - -var options = { - host: 'github.com', - path: '/kriskowal/tigerblood/', - port: 443 -}; - -var req = https.get(options, function(response) { - var recved = 0; - - response.on('data', function(chunk) { - recved += chunk.length; - console.log('Response data.'); - }); - - response.on('end', function() { - console.log('Response end.'); - // Does not work - loadDom(); - }); - -}); - -req.on('error', function(e) { - console.log('Error on get.'); -}); - -function loadDom() { - // Do a lot of computation to stall the process. - // In the meantime the socket will be disconnected. - for (var i = 0; i < 1e8; i++); - - console.log('Dom loaded.'); -}