Allow running jest tests by mocking react-native-navigation device layer#7140
Merged
Conversation
Closed
…on into NavigationMock
Niryo
approved these changes
Jul 1, 2021
This was referenced Aug 25, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
The main motivation here is to provide a mock that will mimic the native behaviour in javascript for enabling fast and powerful tests using jest or any other test runner. Currently we use @testing-library/react-native to render the hierarchy but we support any other test renderer.
Usage
Detox users
We created a tool that translate detox api to @testing-library/react-native api for running your existing detox test suites with jest.
This is how your
jest-setupfile should look like:Replace
./playground/index'with your application entry point.Keep in mind that you might need to mock other native components as well.
@testing-library/react-native Example