()
| 580 | |
| 581 | it('should work correctly with nested components accessing the same asyncData', async () => { |
| 582 | const useCustomData = () => useAsyncData(uniqueKey, async () => { |
| 583 | await Promise.resolve() |
| 584 | return 'value' |
| 585 | }) |
| 586 | |
| 587 | const ChildComponent = defineComponent({ |
| 588 | setup () { |
no test coverage detected
searching dependent graphs…