0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 23:43:09 +01:00
nodejs/test/fixtures/fork2.js

10 lines
202 B
JavaScript
Raw Normal View History

var assert = require('assert');
process.on('message', function(m, server) {
console.log('CHILD got message:', m);
assert.ok(m.hello);
assert.ok(server);
process.send({ gotHandle: true });
});