(paths: string[])
| 8 | type SubBlocks = Record<string, { value: unknown }> |
| 9 | |
| 10 | function rootPaths(paths: string[]): string[] { |
| 11 | return [...new Set(paths.map((path) => path.split('.')[0]).filter(Boolean))].sort() |
| 12 | } |
| 13 | |
| 14 | describe('block outputs parity', () => { |
| 15 | it.concurrent('keeps evaluator tag paths and types aligned', () => { |