fix(core): update

This commit is contained in:
2019-04-08 19:42:23 +02:00
parent 431179f10d
commit c28b25883e
5 changed files with 360 additions and 66 deletions

View File

@ -1,8 +1,24 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartipc from '../ts/index'
import * as smartipc from '../ts/index';
tap.test('first test', async () => {
console.log(smartipc.standardExport)
import * as smartspawn from '@pushrocks/smartspawn';
import * as smartpromise from '@pushrocks/smartpromise';
let testIpc: smartipc.SmartIpc;
tap.test('should instantiate a valid instance', async () => {
testIpc = new smartipc.SmartIpc({
ipcSpace: 'testSmartIpc',
type: 'server'
});
})
tap.start()
tap.test('should create a client', async (tools) => {
});
tap.test('should terminate the smartipc process', async () => {
});
tap.start();