fix(core): update
This commit is contained in:
24
test/test.ts
24
test/test.ts
@ -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();
|
||||
|
Reference in New Issue
Block a user