(ctx)
| 40 | const events = []; |
| 41 | const handlers = { |
| 42 | start(ctx) { events.push({ event: 'start', ...ctx }); }, |
| 43 | end() { events.push({ event: 'end' }); }, |
| 44 | asyncStart(ctx) { events.push({ event: 'asyncStart', result: ctx.result }); }, |
| 45 | asyncEnd(ctx) { events.push({ event: 'asyncEnd', result: ctx.result }); }, |
no outgoing calls
no test coverage detected
searching dependent graphs…