fix(core): update

This commit is contained in:
2020-07-04 14:38:25 +00:00
parent 7fd110d56c
commit 4dd5d12a2e
3 changed files with 23 additions and 4 deletions

View File

@ -10,6 +10,16 @@ tap.test('should create a valid Handler', async () => {
let response: any;
return response;
}
public async checkReqirements() {
return {
allOk: true,
reason: ''
}
}
public async start() {}
public async stop() {}
}
const myHandlerInstance = new MyHandler();