()
| 44 | let res!: ReturnType<typeof useAsyncData> |
| 45 | const component = defineComponent({ |
| 46 | setup () { |
| 47 | res = useAsyncData(...args as [any]) |
| 48 | return () => h('div', [res.data.value as any]) |
| 49 | }, |
| 50 | }) |
| 51 | |
| 52 | const c = await mountSuspended(component) |
nothing calls this directly
no test coverage detected
searching dependent graphs…