(run: Run)
| 240 | } |
| 241 | |
| 242 | getBreadcrumbs(run: Run) { |
| 243 | const parents = this.getParents(run).reverse() |
| 244 | const string = [...parents, run] |
| 245 | .map((parent) => { |
| 246 | const name = `${parent.execution_order}:${parent.run_type}:${parent.name}` |
| 247 | return name |
| 248 | }) |
| 249 | .join(' > ') |
| 250 | return string |
| 251 | } |
| 252 | |
| 253 | onChainStart(run: Run) { |
| 254 | const crumbs = this.getBreadcrumbs(run) |
no test coverage detected