()
| 70 | test('should apply app context', async () => { |
| 71 | const app = createApp({ |
| 72 | render() { |
| 73 | const Foo = resolveComponent('foo') as ComponentOptions |
| 74 | return h(Foo) |
| 75 | }, |
| 76 | }) |
| 77 | app.component('foo', { |
| 78 | render: () => h('div', 'foo'), |
no test coverage detected