Welcome to mirror list, hosted at ThFree Co, Russian Federation.

child_process_should_emit_error.js « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34d23fc58347ac553abae53515a8310d97c4dda0 (plain)
1
2
3
4
5
6
7
8
const exec = require('child_process').exec;

[0, 1].forEach(function(i) {
  exec('ls', function(err, stdout, stderr) {
    console.log(i);
    throw new Error('hello world');
  });
});