(cols: string[])
| 47 | |
| 48 | vi.mock('@sim/db/schema', () => { |
| 49 | const table = (cols: string[]) => |
| 50 | Object.fromEntries(cols.map((c) => [c, `col.${c}`])) as Record<string, string> |
| 51 | const wsFileCols = ['id', 'key', 'context', 'workspaceId', 'deletedAt', 'uploadedAt'] |
| 52 | const softCols = ['id', 'archivedAt', 'deletedAt', 'workspaceId'] |
| 53 | return { |
no outgoing calls
no test coverage detected