({}, userInput)
| 98 | }, |
| 99 | |
| 100 | sendUserInput({}, userInput) { |
| 101 | if (isSocketActive()) { |
| 102 | internalState.websocket.send(userInput); |
| 103 | } |
| 104 | }, |
| 105 | |
| 106 | setErrorStatus({dispatch}) { |
| 107 | dispatch('setStatus', STATUS_ERROR); |
nothing calls this directly
no test coverage detected