screen
objectThe screen
object offers a recommended way to access queries and utilities for the currently rendered UI.
This object is assigned after the render
call and cleared after each test by calling cleanup
. If no render
call has been made in a given test, then it holds a special object and throws a helpful error on each property and method access.
...queries
The most important feature of screen
is providing a set of helpful queries that allow you to find certain elements in the view hierarchy.
See Queries for a complete list.
rerender
Also available under update
alias
Re-render the in-memory tree with a new root element. This simulates a React update render at the root. If the new element has the same type (and key
) as the previous element, the tree will be updated; otherwise, it will re-mount a new tree, in both cases triggering the appropriate lifecycle events.
unmount
Unmount the in-memory tree, triggering the appropriate lifecycle events.
Usually you should not need to call unmount
as it is done automatically if your test runner supports afterEach
hook (like Jest, mocha, Jasmine).
debug
Pretty prints deeply rendered component passed to render
.
message
optionYou can provide a message that will be printed on top.
logs optional message and colored JSX:
mapProps
optionYou can use the mapProps
option to transform the props that will be printed :
This will log the rendered JSX without the style
props.
The children
prop cannot be filtered out so the following will print all rendered components with all props but children
filtered out.
This option can be used to target specific props when debugging a query (for instance, keeping only the children
prop when debugging a getByText
query).
You can also transform prop values so that they are more readable (e.g., flatten styles).
Or remove props that have little value when debugging tests, e.g. path prop for svgs
toJSON
Get the rendered component JSON representation, e.g. for snapshot testing.
root
Returns the rendered root host element.
This API is primarily useful for component tests, as it allows you to access root host view without using *ByTestId
queries or similar methods.
UNSAFE_root
This API typically will return a composite view, which goes against recommended testing practices. This API is primarily available for legacy test suites that rely on such testing.
Returns the rendered composite root element.
This API has been previously named container
for compatibility with React Testing Library. However, despite the same name, the actual behavior has been significantly different; hence, we decided to change the name to UNSAFE_root
.