(log)
| 106 | } |
| 107 | |
| 108 | function getStartTimeString(log) { |
| 109 | if (!isNull(log.startTime)) { |
| 110 | const startTime = new Date(log.startTime); |
| 111 | return startTime.toLocaleDateString() + ' ' + startTime.toLocaleTimeString(); |
| 112 | } else { |
| 113 | return ''; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | function getFullStatus(log) { |
| 118 | if (!isNull(log.exitCode) && !isNull(log.status)) { |
no test coverage detected