Problem Statement
How do you measure and improve test coverage in React Native?
Explanation
Jest can generate coverage reports using the --coverage flag, showing which files or lines are untested.
Developers can then write additional unit or integration tests to cover untested branches, ensuring stable codebases before deployment.