()
| 1508 | test('useProvideStore', () => { |
| 1509 | const Test = () => didRender(JSON.stringify(useStore('s')?.getTables())); |
| 1510 | const ProvideStore1 = () => { |
| 1511 | useProvideStore('s', store); |
| 1512 | return null; |
| 1513 | }; |
| 1514 | const ProvideStore2 = () => { |
| 1515 | useProvideStore( |
| 1516 | 's', |
nothing calls this directly
no test coverage detected
searching dependent graphs…