(
props: ResultCellProps & {readonly cellPrefix?: string},
)
| 322 | ); |
| 323 | |
| 324 | const TestResultCellView = ( |
| 325 | props: ResultCellProps & {readonly cellPrefix?: string}, |
| 326 | ) => ( |
| 327 | <> |
| 328 | {props.cellId} |
| 329 | {props.cellPrefix} |
| 330 | <ResultCellView {...props} /> |
| 331 | </> |
| 332 | ); |
| 333 | |
| 334 | const TestAllCheckpointsView = (props: BackwardCheckpointsProps) => ( |
| 335 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…