()
| 135 | |
| 136 | function handleDelayCmd(cmd, context) { |
| 137 | const executeNestedCmd = () => { |
| 138 | const cmdPromise = executeCmdInternal(cmd.nestedCmd, context); |
| 139 | if (cmdPromise) { |
| 140 | cmdPromise.then((actions) => { |
| 141 | actions.forEach((action) => context.wrappedDispatch(action)); |
| 142 | }); |
| 143 | } |
| 144 | }; |
| 145 | |
| 146 | let timerId; |
| 147 | if (cmd.type === cmdTypes.SET_INTERVAL) { |
nothing calls this directly
no test coverage detected