(dispatchEvent: TaskEventDispatcher)
| 6 | } |
| 7 | |
| 8 | const EMPTY_TASK = (dispatchEvent: TaskEventDispatcher) => { |
| 9 | logger.info("empty task"); |
| 10 | }; |
| 11 | |
| 12 | export function resolveTask(taskProps: TaskProps) { |
| 13 | taskProps.executor = TASK_MAP[taskProps.name] || EMPTY_TASK; |
nothing calls this directly
no outgoing calls
no test coverage detected