({store}: {readonly store: Store})
| 683 | }; |
| 684 | |
| 685 | const DuplicateProvidedStore = ({store}: {readonly store: Store}) => { |
| 686 | useProvideStore('store1', store); |
| 687 | return ''; |
| 688 | }; |
| 689 | |
| 690 | test('covers context fallbacks and duplicate providers', async () => { |
| 691 | const store = createStore(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…