(
props: ResultRowProps & {readonly cellPrefix?: string},
)
| 307 | ); |
| 308 | |
| 309 | const TestResultRowView = ( |
| 310 | props: ResultRowProps & {readonly cellPrefix?: string}, |
| 311 | ) => ( |
| 312 | <> |
| 313 | {props.rowId}: |
| 314 | <ResultRowView |
| 315 | {...props} |
| 316 | resultCellComponent={TestResultCellView} |
| 317 | getResultCellComponentProps={(_cellId: Id) => ({ |
| 318 | cellPrefix: props.cellPrefix, |
| 319 | })} |
| 320 | /> |
| 321 | </> |
| 322 | ); |
| 323 | |
| 324 | const TestResultCellView = ( |
| 325 | props: ResultCellProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…