Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

react-testing does not print name of component wrapped in memo correctly #1237

Open
BPScott opened this issue Jan 17, 2020 · 4 comments
Open
Labels
Area: dev experience Package: react-testing stale Stale issue that hasn't received any attention in a while Type: Bug 🐛 Something isn't working

Comments

@BPScott
Copy link
Member

BPScott commented Jan 17, 2020

Overview

I was recently testing some stuff in web when I came across a case where react-testing was not returning the name of a component correctly and was instead falling back to the default of "Component"

 ● <FileInsuranceClaim /> › on save › with errors › displays server error toast and restore submit button if server error occurs

    expect(received).toContainReactComponent(expected)

    Expected the React element:
      <Async(FileInsuranceClaim) />
    To contain component:
      <Component />
    But no matching <Component /> elements were found.

      1438 |         await submit(fileInsuranceClaim);
      1439 | 
    > 1440 |         expect(fileInsuranceClaim).toContainReactComponent(Toast);

I would have expected that to say:

To contain component:
      <Toast />

I believe this is because this Toast component in question is the one from polaris which is a Component wrapped in a React.memo, rather than a plain old functional component.

I suspect this is because the printType utility does not correctly handle finding the name for components that are wrapped in React.memo(). I'd wager components wrapped in React.forwardRef() are also affected in the same way. You should also test components that are do React.memo(React.forwardRef(function SomeComponent() { return 'hi'; }))

facebook/react#17274 from the react repo might be some useful related reading as it fixes up some logic around how names are extracted from these exotic components in the react dev tools.

@BPScott
Copy link
Member Author

BPScott commented Jan 20, 2020

@patsissons points out that nodeName() in

export function nodeName<Props>({type}: Node<Props>) {
if (type && typeof type === 'object' && '_context' in type) {
const context = (type as any)._context;
return `${context.displayName || 'Context'}.${
type === context.Provider ? 'Provider' : 'Consumer'
}`;
}
if (type == null) {
return 'Node';
}
return typeof type === 'string'
? type
: type.displayName || type.name || 'Component';
}
is implemented in a very similar way to printType and likely suffers from the same issues. This seems like an opportunity to avoid duplicating functionality between these two very similar functions.

@BPScott BPScott changed the title react-testing does print name of component wrapped in memo correctly react-testing does not print name of component wrapped in memo correctly Feb 11, 2020
@stale
Copy link

stale bot commented Oct 4, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale Stale issue that hasn't received any attention in a while label Oct 4, 2020
@BPScott
Copy link
Member Author

BPScott commented Oct 4, 2020

Still an issue

@stale stale bot removed the stale Stale issue that hasn't received any attention in a while label Oct 4, 2020
@stale
Copy link

stale bot commented Dec 25, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale Stale issue that hasn't received any attention in a while label Dec 25, 2020
@ghost ghost closed this as completed Mar 16, 2021
@BPScott BPScott reopened this Aug 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: dev experience Package: react-testing stale Stale issue that hasn't received any attention in a while Type: Bug 🐛 Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant