(log)
| 99 | } |
| 100 | |
| 101 | export function translateExecutionLog(log) { |
| 102 | log.startTimeString = getStartTimeString(log); |
| 103 | log.fullStatus = getFullStatus(log); |
| 104 | |
| 105 | return log; |
| 106 | } |
| 107 | |
| 108 | function getStartTimeString(log) { |
| 109 | if (!isNull(log.startTime)) { |
no test coverage detected