({state, dispatch, commit}, executionId)
| 91 | }, |
| 92 | |
| 93 | start({state, dispatch, commit}, executionId) { |
| 94 | commit('SET_ID', executionId); |
| 95 | commit('SET_LOG', null); |
| 96 | dispatch('setStatus', STATUS_EXECUTING); |
| 97 | attachToWebsocket(internalState, state, commit, dispatch); |
| 98 | }, |
| 99 | |
| 100 | sendUserInput({}, userInput) { |
| 101 | if (isSocketActive()) { |
nothing calls this directly
no test coverage detected