()
| 37 | } |
| 38 | |
| 39 | getPredictionTimestamp() { |
| 40 | const progressPrediction = this.getProgressPrediction(); |
| 41 | if (!progressPrediction || new Date().getTime() > progressPrediction) return NaN; |
| 42 | return progressPrediction; |
| 43 | } |
| 44 | |
| 45 | getPrediction() { |
| 46 | const timestamp = Number(this.getPredictionTimestamp()); |
no test coverage detected