(group: WorkflowGroup, row: TableRow)
| 82 | * is uniform. |
| 83 | */ |
| 84 | export function areGroupDepsSatisfied(group: WorkflowGroup, row: TableRow): boolean { |
| 85 | const cols = group.dependencies?.columns ?? [] |
| 86 | for (const colName of cols) { |
| 87 | if (isDepValueUnmet(row.data[colName])) return false |
| 88 | } |
| 89 | return true |
| 90 | } |
| 91 | |
| 92 | export interface UnmetDeps { |
| 93 | /** Column names whose value on this row is empty. */ |
no test coverage detected