(status: string)
| 183 | } |
| 184 | }, |
| 185 | reportStatus(status: string) { |
| 186 | switch (currentState) { |
| 187 | case BuilderProgressState.Running: |
| 188 | progress({ state: currentState, status, current, total }, context); |
| 189 | break; |
| 190 | case BuilderProgressState.Waiting: |
| 191 | progress({ state: currentState, status }, context); |
| 192 | break; |
| 193 | } |
| 194 | }, |
| 195 | reportProgress(current: number, total?: number, status?: string) { |
| 196 | switch (currentState) { |
| 197 | case BuilderProgressState.Running: |
no test coverage detected