(groups: WorkflowGroup[])
| 19 | } |
| 20 | |
| 21 | function makeTable(groups: WorkflowGroup[]): TableDefinition { |
| 22 | return { |
| 23 | id: 'tbl1', |
| 24 | name: 'T', |
| 25 | schema: { columns: [], workflowGroups: groups }, |
| 26 | rowCount: 1, |
| 27 | maxRows: 1000, |
| 28 | workspaceId: 'ws1', |
| 29 | createdBy: 'u1', |
| 30 | createdAt: new Date(), |
| 31 | updatedAt: new Date(), |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | function makeRow( |
| 36 | executions: Record<string, RowExecutionMetadata>, |
no outgoing calls
no test coverage detected