caseywebdev / react-list

:scroll: A versatile infinite scroll React component.

Home Page:https://caseywebdev.github.io/react-list

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support dive on shallow rendered component

iamogbz opened this issue · comments

When testing with enzyme, diving on shallow rendered ReactList component fails with

evaluated.TypeError: Cannot read property 'parentElement' of undefined

Most likely cause, ref which sets this.el and this.items is not evaluated on a shallow render. Can solve this using mount but that results in ungainly component snapshots.

Replaced my usecase with https://github.com/bvaughn/react-window, works well enough