* clearLine * clears the line for easier JSON parsing
()
| 41 | * clears the line for easier JSON parsing |
| 42 | */ |
| 43 | clearLine() { |
| 44 | if (process.stdout.isTTY) { |
| 45 | process.stderr.write('\u001B[999D\u001B[K'); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | onTestStart(path) { |
| 50 | const onTestStart = this._statsCollected.onTestStart; |
no test coverage detected