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

Unable to test deeply nested children when using typed children #897

Closed
agubler opened this issue Apr 22, 2021 · 0 comments · Fixed by #898
Closed

Unable to test deeply nested children when using typed children #897

agubler opened this issue Apr 22, 2021 · 0 comments · Fixed by #898
Assignees
Labels

Comments

@agubler
Copy link
Member

agubler commented Apr 22, 2021

Bug

At the moment the test renderer is limited to enable testing object children to a single level which means that anything with more complex nesting it's not possible to resolve the children if they are functions.

Additionally just having nested children causes an error when formatting the widget and expected assertion result during the renderer.expect.

The current mechanism for resolving children passes params needed uses the renderer.child API, requiring a wrapped widget and the key of the child object.

renderer.child(WrappedWidget, 'label', 'params', 'for', 'child');

This is limited to a single level of children, it would be good if there was a way to resolve nested functional children by providing the params in a similar way to the existing API.

renderer.child(WrappedWidget, () => {
    return {
        labels: {
            leading: ['params', 'for', 'child']
        }
    }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant