Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/disabled/test-tty-stdio.js')
-rw-r--r--test/disabled/test-tty-stdio.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/disabled/test-tty-stdio.js b/test/disabled/test-tty-stdio.js
deleted file mode 100644
index 57d7ee67759..00000000000
--- a/test/disabled/test-tty-stdio.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict';
-// Can't test this when 'make test' doesn't assign a tty to the stdout.
-var common = require('../common');
-var assert = require('assert');
-var tty = require('tty');
-
-assert.ok(process.stdin instanceof tty.ReadStream);
-assert.ok(process.stdin.readable);
-assert.ok(!process.stdin.writable);
-
-assert.ok(process.stdout instanceof tty.WriteStream);
-assert.ok(!process.stdout.readable);
-assert.ok(process.stdout.writable);