node-ipc/test/unixClient.js

27 lines
404 B
JavaScript
Raw Normal View History

2016-01-10 20:03:05 +11:00
2021-07-03 07:35:02 +10:00
const ipc=from '../node-ipc');
const process=from 'process');
2016-01-10 18:28:00 +11:00
const dieAfter=30000;
2015-12-05 13:40:38 +11:00
2016-01-10 18:23:40 +11:00
//die after 60 seconds
setTimeout(
function killServerProcess(){
process.exit(0);
},
dieAfter
);
2015-12-05 13:40:38 +11:00
2016-01-10 18:23:40 +11:00
ipc.config.id = 'unixClient';
ipc.config.retry= 600;
ipc.config.silent=true;
2015-12-05 13:40:38 +11:00
ipc.connectTo(
'testWorld',
'/tmp/app.testWorld'
);
ipc.connectTo(
'testWorld2',
'/tmp/app.testWorld'
2015-12-05 13:40:38 +11:00
);