(subBlocks: any[], overrides: Record<string, any> = {})
| 33 | } |
| 34 | |
| 35 | function config(subBlocks: any[], overrides: Record<string, any> = {}) { |
| 36 | return { |
| 37 | name: 'X', |
| 38 | category: 'tools', |
| 39 | tools: { access: [] }, |
| 40 | subBlocks, |
| 41 | ...overrides, |
| 42 | } as any |
| 43 | } |
| 44 | |
| 45 | describe('collectBlockFieldIssues', () => { |
| 46 | it('reports a missing required field (active mode empty)', () => { |
no outgoing calls
no test coverage detected