test-spawn-fail.js 266 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 'use strict'; process.stdin.pipe(require('fs').createWriteStream(__dirname + '/output.txt')).on('close', function () { setTimeout(function () { process.exit(13); }, 500); }); process.stdout.write('output written'); process.stderr.write('error log exists');