summaryrefslogtreecommitdiff
path: root/test/simple/test-child-process-spawn-node.js
blob: 1079d953d449a2fd1307bd3b41210f0e34df9911 (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 assert = require('assert');
var common = require('../common');
var fork = require('child_process').fork;

var n = fork(common.fixturesDir + '/child-process-spawn-node.js');

var messageCount = 0;

n.on('message', function(m) {
  console.log('PARENT got message:', m);
  assert.ok(m.foo);
  messageCount++;
});

n.send({ hello: 'world' });

var childExitCode = -1;
n.on('exit', function(c) {
  childExitCode = c;
});

process.on('exit', function() {
  assert.ok(childExitCode == 0);
});