mirror of https://github.com/lukechilds/node.git
Browse Source
adds a basic test for process.stdin.setRawMode to ensure that the isRaw property is properly changed PR-URL: https://github.com/nodejs/node/pull/10037 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>v6.x
Jonathan Darling
8 years ago
committed by
Anna Henningsen
1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
|
|||
process.stdin.setRawMode(true); |
|||
assert.strictEqual(process.stdin.isRaw, true); |
|||
|
|||
process.stdin.setRawMode(false); |
|||
assert.strictEqual(process.stdin.isRaw, false); |
Loading…
Reference in new issue