summaryrefslogtreecommitdiff
path: root/test/parallel/test-stdin-pause-resume-sync.js
blob: 4fe4d445a2443ed5b032cad6f28d2af13871bf2a (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';
console.error('before opening stdin');
process.stdin.resume();
console.error('stdin opened');
console.error('pausing stdin');
process.stdin.pause();
console.error('opening again');
process.stdin.resume();
console.error('pausing again');
process.stdin.pause();
console.error('should exit now');