summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-spawn-error.js
blob: fe279dc6e586af5e0bc19ac65fb09052eb6df7de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var common = require('../common');
var fs = require('fs');
var spawn = require('child_process').spawn;
var assert = require('assert');

var errors = 0;

var enoentPath = 'foo123';
var spawnargs = ['bar'];
assert.equal(common.fileExists(enoentPath), false);

var enoentChild = spawn(enoentPath, spawnargs);
enoentChild.on('error', function (err) {
  assert.equal(err.code, 'ENOENT');
  assert.equal(err.errno, 'ENOENT');
  assert.equal(err.syscall, 'spawn ' + enoentPath);
  assert.equal(err.path, enoentPath);
  assert.deepEqual(err.spawnargs, spawnargs);
  errors++;
});

process.on('exit', function() {
  assert.equal(1, errors);
});