()
| 163 | } |
| 164 | |
| 165 | start(): void { |
| 166 | if(this.runner.isStopped()){ |
| 167 | this.runner.start(); |
| 168 | this.stateMachine.changeState('idle'); |
| 169 | this.emitter.emit('task:started', this.createContext(new Date())); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | stop(): void { |
| 174 | if(this.runner.isStarted()) { |
no test coverage detected