React Native Guideline: Testing — Use React Native Testing Library. Description: Component testing. Do: render and fireEvent. Don't: Enzyme or manual testing. Good Example: render(<Component />). Bad Example: shallow(<Component />). Severity: Medium. Docs: https://callstack.github.io/react-native-testing-library/.