0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/sequential/test-stdin-child-proc.js

9 lines
388 B
JavaScript
Raw Normal View History

'use strict';
// This tests that pausing and resuming stdin does not hang and timeout
// when done in a child process. See test/simple/test-stdin-pause-resume.js
2012-02-20 13:22:12 +01:00
var common = require('../common');
var child_process = require('child_process');
var path = require('path');
child_process.spawn(process.execPath,
2012-01-17 20:16:49 +01:00
[path.resolve(__dirname, 'test-stdin-pause-resume.js')]);