(ms: number)
| 4 | import cron from '../node-cron'; |
| 5 | |
| 6 | const wait = (ms: number) => new Promise(r => setTimeout(r, ms)); |
| 7 | const silent = { info() {}, warn() {}, error() {}, debug() {} } as any; |
| 8 | |
| 9 | function makeCoordinator(behavior: { shouldRunReturns?: boolean; shouldRunThrows?: boolean; onCompleteThrows?: boolean } = {}) { |
no outgoing calls
no test coverage detected