(run: Run)
| 35 | } |
| 36 | |
| 37 | getBreadcrumbs(run: Run) { |
| 38 | const parents = this.getParents(run).reverse() |
| 39 | const string = [...parents, run] |
| 40 | .map((parent) => { |
| 41 | const name = `${parent.execution_order}:${parent.run_type}:${parent.name}` |
| 42 | return name |
| 43 | }) |
| 44 | .join(' > ') |
| 45 | return string |
| 46 | } |
| 47 | |
| 48 | // logging methods |
| 49 |
no test coverage detected