mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8bf48bf2cf
Make sure that `process.stdin.write()`, and in particular ending the stream, works. PR-URL: https://github.com/nodejs/node/pull/23053 Reviewed-By: James M Snell <jasnell@gmail.com>
4 lines
67 B
JavaScript
4 lines
67 B
JavaScript
'use strict';
|
|
require('../common');
|
|
process.stdin.end('foobar\n');
|