node-ipc/spec/support/jasmineTest/unixClient.js

28 lines
430 B
JavaScript
Raw Normal View History

2016-01-10 20:03:05 +11:00
'use strict';
2016-01-10 18:23:40 +11:00
const ipc=require('../../../node-ipc');
const process=require('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
);