(_ctx: any, _push: any)
| 109 | test('propagates sync errors from compiled ssrRenderSuspense default slot', async () => { |
| 110 | const Throwing = defineComponent({ |
| 111 | ssrRender(_ctx: any, _push: any) { |
| 112 | throw new TypeError('bang') |
| 113 | }, |
| 114 | }) |
| 115 | |
| 116 | const Root = defineComponent({ |
nothing calls this directly
no test coverage detected