fix(core): update

This commit is contained in:
2020-09-22 22:54:05 +00:00
parent 9e6b92f864
commit d170af1db5
3 changed files with 16 additions and 0 deletions

View File

@ -18,6 +18,13 @@ tap.test('should create a valid Handler', async () => {
public async start() {}
public async stop() {}
public async checkRequirements(): Promise<sdk.IRequirementResult> {
return {
allOk: true,
reason: ''
}
}
}
const myHandlerInstance = new MyHandler();