switch to native ipc to scale down on dependencies

This commit is contained in:
2016-09-28 23:46:28 +02:00
parent 65ab58f727
commit 5ce83601b4
24 changed files with 271 additions and 55 deletions

13
test/test.ts Normal file
View File

@@ -0,0 +1,13 @@
import 'typings-test'
import * as should from 'should'
import * as smartipc from '../dist/index'
let testIpcMaster: smartipc.IpcMaster
describe('smartipc',function(){
it('should create an instance of IpcMaster',function(){
testIpcMaster = new smartipc.IpcMaster({})
should(testIpcMaster).be.instanceof(smartipc.IpcMaster)
})
})