within
, getQueriesForElement
within
(also available as getQueriesForElement
alias) performs queries scoped to given element.
Please note that additional render
specific operations like update
, unmount
, debug
, toJSON
are not included.
Use cases for scoped queries include:
act
Useful function to help testing components that use hooks API. By default any render
, update
, fireEvent
, and waitFor
calls are wrapped by this function, so there is no need to wrap it manually. This method is re-exported from react-test-renderer
.
Consult our Undestanding Act function document for more understanding of its intricacies.
cleanup
Unmounts React trees that were mounted with render
and clears screen
variable that holds latest render
output.
Please note that this is done automatically if the testing framework you're using supports the afterEach
global (like mocha, Jest, and Jasmine). If not, you will need to do manual cleanups after each test.
For example, if you're using the jest
testing framework, then you would need to use the afterEach
hook like so:
The afterEach(cleanup)
call also works in describe
blocks:
Failing to call cleanup
when you've called render
could result in a memory leak and tests which are not "idempotent" (which can lead to difficult to debug errors in your tests).