(step, payload)
| 4439 | } |
| 4440 | |
| 4441 | function notifyStepComplete(step, payload) { |
| 4442 | const waiter = stepWaiters.get(step); |
| 4443 | console.log(LOG_PREFIX, `[notifyStepComplete] step ${step}, hasWaiter=${Boolean(waiter)}`); |
| 4444 | if (waiter) waiter.resolve(payload); |
| 4445 | } |
| 4446 | |
| 4447 | function notifyStepError(step, error) { |
| 4448 | const waiter = stepWaiters.get(step); |
no outgoing calls
no test coverage detected