Hi,
We have multiple instances where we want to test certain cells / columns with React Testing Library.
So for instance we might have a component something like
const Component => <HotTable columns={[{ data: 'test', title: 'Test' ]} data={[{ test: 'a' }, { test: 'b' }, { test: 'c' }]} />
And then our test might be something like
const screen = render(<Component />)
I was thinking that this would render the whole of the table but it appears we can only access the first cell on the first column. Making it difficult to test other values.
Do you have any advise on how we either solve the issue above or how we could test handsontable
Thanks, James