Skip to content

Make deeply render as work with <></> at the root #64

@salomvary

Description

@salomvary

This test currently fails:

        it('renders a component with a fragment at the root', function () {

            const Fragment = function () {
                return <><div>Yay</div><div>Yeah</div></>;
            };

            expect(<Fragment/>,
                'to deeply render as', <><div>Yay</div><div>Yeah</div></>
            );
        });

with the following error:

  1) unexpected-react (deep rendering) to deeply render as renders a component with a fragment at the root:
     UnexpectedError: 
expected <Fragment />
to deeply render as <no-display-name><div>Yay</div><div>Yeah</div></no-display-name>

<Fragment // should be <no-display-name
>
  <div>Yay</div><div>Yeah</div>
</Fragment>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions