(testPath: string, config: Config.ProjectConfig)
| 125 | } |
| 126 | |
| 127 | testStarted(testPath: string, config: Config.ProjectConfig): void { |
| 128 | this._currentTests.add(testPath, config); |
| 129 | if (this._showStatus) { |
| 130 | this._debouncedEmit(); |
| 131 | } else { |
| 132 | this._emit(); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | testFinished( |
| 137 | _config: Config.ProjectConfig, |
no test coverage detected