enabling test case after node v0.6.2 fix for nul stdout

This commit is contained in:
Tomasz Janczuk 2011-11-22 10:40:46 -08:00
Родитель ba2a943709
Коммит 4934fa44b6
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1,8 +1,7 @@
var http = require('http');
http.createServer(function (req, res) {
// TODO, tjanczuk, the following line requires a fix from node v0.6.2 which will be released tomorrow; uncomment
//console.log('logging to /dev/null');
console.log('logging to /dev/null');
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end('Hello, world! [NODE_ENV]=' + process.env.NODE_ENV);
}).listen(process.env.PORT);