()
| 220 | } |
| 221 | |
| 222 | run() { |
| 223 | if (!this.isRunning && this.canWrite) { |
| 224 | this.isRunning = true; |
| 225 | // Use nextTick to allow the queue to build up on the current phase |
| 226 | process.nextTick(() => this.process()); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | process() { |
| 231 | if (this.error) { |
no test coverage detected