fix(core): update

This commit is contained in:
2020-12-21 12:07:34 +00:00
parent c8ce7942d5
commit ac43f63daf
5 changed files with 11 additions and 14 deletions

View File

@ -6,13 +6,13 @@ let deesCommsTest: deesComms.DeesComms;
tap.test('first test', async (tools) => {
deesCommsTest = new deesComms.DeesComms();
deesCommsTest.createTypedHandler<any>('test', async (requestData) => {
return {'hitheretoo': `greetings to ${requestData.hithere}`};
return { hitheretoo: `greetings to ${requestData.hithere}` };
});
// lets fire a request
const typedrequest = deesCommsTest.createTypedRequest<any>('test');
const result = await typedrequest.fire({
'hithere': 'hello'
hithere: 'hello',
});
console.log(JSON.stringify(result));
});