Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2019-03-12
/
.
/
test
/
parallel
/
test-tty-stdin-end.js
blob: c78f58446d03e900d071f876d6147452cb93bce7 [
file
] [
edit
]
'use strict'
;
require
(
'../common'
);
// This test ensures that Node.js doesn't crash on `process.stdin.emit("end")`.
// https://github.com/nodejs/node/issues/1068
process
.
stdin
.
emit
(
'end'
);