Jest Enzyme test a React component that returns null in render method
ShallowWrapper
has a isEmptyRender()
function:
expect(comp.isEmptyRender()).toBe(true)
expect(comp.type()).toEqual(null)
That's it!
or:
expect(comp.get(0)).toBeFalsy()