({state, dispatch, commit})
| 44 | |
| 45 | actions: { |
| 46 | reconnect({state, dispatch, commit}) { |
| 47 | dispatch('setStatus', STATUS_EXECUTING); |
| 48 | attachToWebsocket(internalState, state, commit, dispatch); |
| 49 | }, |
| 50 | |
| 51 | stopExecution({state, commit, dispatch}) { |
| 52 | if (isNull(state.killIntervalId) && (!state.killEnabled)) { |
nothing calls this directly
no test coverage detected