()
| 121 | calls.push('job1') |
| 122 | } |
| 123 | const cb1: SchedulerJob = () => { |
| 124 | // queueJob in postFlushCb |
| 125 | calls.push('cb1') |
| 126 | queueJob(job1) |
| 127 | } |
| 128 | cb1.flags! |= SchedulerJobFlags.PRE |
| 129 | |
| 130 | queueJob(cb1) |
nothing calls this directly
no test coverage detected