configure
asyncUtilTimeout
optionDefault timeout, in ms, for async helper functions (waitFor
, waitForElementToBeRemoved
) and findBy*
queries. Defaults to 1000 ms.
defaultIncludeHiddenElements
optionDefault value for includeHiddenElements query option for all queries. The default value is set to false
, so all queries will not match elements hidden from accessibility. This is because the users of the app would not be able to see such elements.
This option is also available as defaultHidden
alias for compatibility with React Testing Library.
defaultDebugOptions
optionDefault debug options to be used when calling debug()
. These default options will be overridden by the ones you specify directly when calling debug()
.
concurrentRoot
optionSet to true
to enable concurrent rendering used in the React Native New Architecture. Otherwise render
will default to legacy synchronous rendering.
resetToDefaults()
RNTL_SKIP_AUTO_CLEANUP
Set to true
to disable automatic cleanup()
after each test. It works the same as importing react-native-testing-library/dont-cleanup-after-each
or using react-native-testing-library/pure
.
RNTL_SKIP_AUTO_DETECT_FAKE_TIMERS
Set to true
to disable auto-detection of fake timers. This might be useful in rare cases when you want to use non-Jest fake timers. See issue #886 for more details.