mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 11:29:35 +00:00

common.js needs to be loaded in all tests so that there is checking for variable leaks and possibly other things. However, it does not need to be assigned to a variable if nothing in common.js is referred to elsewhere in the test. PR-URL: https://github.com/nodejs/node/pull/4408 Reviewed-By: James M Snell <jasnell@gmail.com>
29 lines
574 B
JavaScript
29 lines
574 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var TTY = process.binding('tty_wrap').TTY;
|
|
var isTTY = process.binding('tty_wrap').isTTY;
|
|
|
|
if (isTTY(1) == false) {
|
|
console.log('1..0 # Skipped: fd 1 is not a tty.');
|
|
return;
|
|
}
|
|
|
|
var handle = new TTY(1);
|
|
var callbacks = 0;
|
|
|
|
var req1 = handle.writeBuffer(Buffer('hello world\n'));
|
|
req1.oncomplete = function() {
|
|
callbacks++;
|
|
};
|
|
|
|
var req2 = handle.writeBuffer(Buffer('hello world\n'));
|
|
req2.oncomplete = function() {
|
|
callbacks++;
|
|
};
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2, callbacks);
|
|
});
|