(renderChildren: () => VNode[])
| 42 | }) |
| 43 | |
| 44 | const renderWithBlock = (renderChildren: () => VNode[]) => { |
| 45 | render( |
| 46 | (openBlock(), (block = createBlock('div', null, renderChildren()))), |
| 47 | root, |
| 48 | ) |
| 49 | } |
| 50 | |
| 51 | test('basic use of block', () => { |
| 52 | render((openBlock(), (block = createBlock('p', null, 'foo'))), root) |
no test coverage detected