({count}: {count: number})
| 948 | createStore().setTables({t1: {r1: {c1: count}}}), |
| 949 | ); |
| 950 | const Test = ({count}: {count: number}) => { |
| 951 | const store = useCreateStore(() => initStore(count)); |
| 952 | return didRender(JSON.stringify([count, store.getTables()])); |
| 953 | }; |
| 954 | |
| 955 | const {container, rerender, unmount} = render(<Test count={1} />); |
| 956 | expect(container.textContent).toEqual( |
nothing calls this directly
no test coverage detected
searching dependent graphs…