You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
682 B

'use strict';
const common = require('../common');
const { TTY, isTTY } = process.binding('tty_wrap');
const strictEqual = require('assert').strictEqual;
strictEqual(isTTY(0), true, 'fd 0 is not a TTY');
const handle = new TTY(0);
handle.readStart();
handle.onread = common.noop;
function isHandleActive(handle) {
return process._getActiveHandles().some((active) => active === handle);
}
strictEqual(isHandleActive(handle), true, 'TTY handle not initially active');
handle.unref();
strictEqual(isHandleActive(handle), false, 'TTY handle active after unref()');
handle.ref();
strictEqual(isHandleActive(handle), true, 'TTY handle inactive after ref()');
handle.unref();