test: remove obsolete TODO comments

The readfile/pipe tests rely on pre-existing pipes in the system.
This arguably tests the OS functionality and not really io.js
functionality. Removing TODOs.

PR-URL: https://github.com/nodejs/io.js/pull/2033
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
This commit is contained in:
Rich Trott 2015-06-22 11:53:50 -07:00
parent bdfeb798ad
commit 776a65ebcd
3 changed files with 0 additions and 3 deletions

View File

@ -5,7 +5,6 @@ var path = require('path');
// simulate `cat readfile.js | node readfile.js`
// TODO: Have some way to make this work on windows.
if (process.platform === 'win32') {
console.error('No /dev/stdin on windows. Skipping test.');
process.exit();

View File

@ -4,7 +4,6 @@ var assert = require('assert');
// simulate `cat readfile.js | node readfile.js`
// TODO: Have some way to make this work on windows.
if (process.platform === 'win32') {
console.error('No /dev/stdin on windows. Skipping test.');
process.exit();

View File

@ -5,7 +5,6 @@ var path = require('path');
// simulate `cat readfile.js | node readfile.js`
// TODO: Have some way to make this work on windows.
if (process.platform === 'win32') {
console.error('No /dev/stdin on windows. Skipping test.');
process.exit();