()
| 180 | } |
| 181 | |
| 182 | get progress(): number | undefined { |
| 183 | if (this.duration === undefined || this.estimatedDuration === undefined) { |
| 184 | return |
| 185 | } |
| 186 | |
| 187 | const progress = this.duration / this.estimatedDuration * 100 |
| 188 | |
| 189 | return progress |
| 190 | } |
| 191 | |
| 192 | get progressTime(): string | undefined { |
| 193 | if (!this.progress || this.estimatedDuration === undefined || this.duration === undefined) { |
nothing calls this directly
no outgoing calls
no test coverage detected