fix(core): update

This commit is contained in:
2019-04-08 19:56:21 +02:00
parent 9a177dc10b
commit 712270ba62
6 changed files with 49 additions and 22 deletions

View File

@ -11,14 +11,17 @@ tap.test('should instantiate a valid instance', async () => {
ipcSpace: 'testSmartIpc',
type: 'server'
});
})
tap.test('should create a client', async (tools) => {
testIpc.start();
});
tap.test('should terminate the smartipc process', async () => {
tap.test('should create a client', async tools => {
const clientIpc = new smartipc.SmartIpc({
ipcSpace: 'testSmartIpc',
type: 'client'
});
clientIpc.sendMessage();
});
tap.test('should terminate the smartipc process', async () => {});
tap.start();