Description
Describe the feature you'd like:
When rendering components for test, I often find myself repeating render(ui, { wrapper: TestApp() })
over and over again.
It would be nice to have a possibility to define the wrapper using a global configure(...)
call.
By having this in global config, you could ensure that, by default, all the rendered components are tested in the context resembling the onion structure of various wrappers and context providers that they are going to be embedded in in production code anyway. This would help capture bugs when this context layer has an adverse effect on the behaviour of the component under test.
Describe alternatives you've considered:
You could of course define a custom function that does the same for you by wrapping the call to render
. However, without the hindsight of defining one upfront, if you've already used the barebones render
in hundreds of tests before the need for a wrapper, you need to now refactor all of those tests :(
Teachability, Documentation, Adoption, Migration Strategy:
No migration needed as this would be backwards-compatible in terms of the configure
API.