{
  "markdown": "<div align=\"center\">\n  <a href=\"https://www.callstack.com/open-source?utm_campaign=generic&utm_source=github&utm_medium=referral&utm_content=react-native-testing-library\" align=\"center\">\n    <img src=\"https://github.com/user-attachments/assets/4d452312-4ffd-4439-855f-a9b12ad7d6c2\" alt=\"React Native Testing Library\" />\n  </a>\n  <p align=\"center\">Developer-friendly and complete React Native testing utilities that encourage good testing practices.</p>\n</div>\n\n[![Version][version-badge]][package]\n[![Build Status][build-badge]][build]\n[![Code Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![MIT License][license-badge]][license]\n[![Sponsored by Callstack][callstack-badge]][callstack]\n\n## The problem\n\nYou want to write maintainable tests for your React Native components. Your tests should avoid implementation details and focus on giving you confidence. They should remain maintainable so refactors (changes to implementation but not functionality) don't break your tests and slow you and your team down.\n\n## This solution\n\nThe React Native Testing Library (RNTL) tests React Native components. It simulates the React Native runtime on top of [Test Renderer](https://github.com/mdjastrzebski/test-renderer) and encourages better testing practices. Its primary guiding principle is:\n\n> The more your tests resemble the way your software is used, the more confidence they can give you.\n\nThis project is inspired by [React Testing Library](https://github.com/testing-library/react-testing-library). Tested to work with Jest, but it should work with other test runners as well.\n\n## Installation\n\nOpen a Terminal in your project's folder and run:\n\n```sh\nnpm install --save-dev @testing-library/react-native\n```\n\nThis library has a `peerDependencies` listing for [Test Renderer](https://github.com/mdjastrzebski/test-renderer). Make sure to install it as a dev dependency:\n\n```sh\nnpm install --save-dev test-renderer\n```\n\n### Additional Jest matchers\n\nYou can use the built-in Jest matchers automatically by having any import from `@testing-library/react-native` in your test.\n\n## Example\n\n```jsx\nimport { render, screen, userEvent } from '@testing-library/react-native';\nimport { QuestionsBoard } from '../QuestionsBoard';\n\ntest('form submits two answers', async () => {\n  const questions = ['q1', 'q2'];\n  const onSubmit = jest.fn();\n\n  const user = userEvent.setup();\n  await render(<QuestionsBoard questions={questions} onSubmit={onSubmit} />);\n\n  const answerInputs = screen.getAllByLabelText('answer input');\n\n  // simulates the user focusing on TextInput and typing text one char at a time\n  await user.type(answerInputs[0], 'a1');\n  await user.type(answerInputs[1], 'a2');\n\n  // simulates the user pressing on any pressable element\n  await user.press(screen.getByRole('button', { name: 'Submit' }));\n\n  expect(onSubmit).toHaveBeenCalledWith({\n    1: { q: 'q1', a: 'a1' },\n    2: { q: 'q2', a: 'a2' },\n  });\n});\n```\n\nYou can find the source of `QuestionsBoard` component and this example [here](https://github.com/callstack/react-native-testing-library/blob/main/src/__tests__/questionsBoard.test.tsx).\n\n## API / Usage\n\nReact Native Testing Library consists of following APIs:\n\n- [`render` function](https://oss.callstack.com/react-native-testing-library/docs/api/render) - render your UI components for testing purposes\n- [`screen` object](https://oss.callstack.com/react-native-testing-library/docs/api/screen) - access rendered UI:\n  - [Queries](https://oss.callstack.com/react-native-testing-library/docs/api/queries) - find rendered components by various predicates: role, text, test ids, etc\n  - Lifecycle methods: [`rerender`](https://oss.callstack.com/react-native-testing-library/docs/api/screen#rerender), [`unmount`](https://oss.callstack.com/react-native-testing-library/docs/api/screen#unmount)\n  - Helpers: [`debug`](https://oss.callstack.com/react-native-testing-library/docs/api/screen#debug), [`toJSON`](https://oss.callstack.com/react-native-testing-library/docs/api/screen#tojson), [`root`](https://oss.callstack.com/react-native-testing-library/docs/api/screen#root), [`container`](https://oss.callstack.com/react-native-testing-library/docs/api/screen#container)\n- [Jest matchers](https://oss.callstack.com/react-native-testing-library/docs/api/jest-matchers) - validate assumptions about your UI\n- [User Event](https://oss.callstack.com/react-native-testing-library/docs/api/events/user-event) - simulate common user interactions like [`press`](https://oss.callstack.com/react-native-testing-library/docs/api/events/user-event#press) or [`type`](https://oss.callstack.com/react-native-testing-library/docs/api/events/user-event#type)\n- [Fire Event](https://oss.callstack.com/react-native-testing-library/docs/api/events/fire-event) - simulate any component event\n- [`renderHook` function](https://oss.callstack.com/react-native-testing-library/docs/api/misc/render-hook) - render hooks for testing purposes\n- Miscellaneous APIs:\n  - [Async utils](https://oss.callstack.com/react-native-testing-library/docs/api/misc/async): `findBy*` queries, `waitFor`, `waitForElementToBeRemoved`\n  - [Configuration](https://oss.callstack.com/react-native-testing-library/docs/api/misc/config): `configure`, `resetToDefaults`\n  - [Accessibility](https://oss.callstack.com/react-native-testing-library/docs/api/misc/accessibility): `isHiddenFromAccessibility`\n  - [Other](https://oss.callstack.com/react-native-testing-library/docs/api/misc/other): `within`, `act`, `cleanup`\n\n## Migration Guides\n\n- **[Migration to 14.0](https://oss.callstack.com/react-native-testing-library/docs/start/migration-v14)** - Drops React 18, async APIs by default\n\n## Troubleshooting\n\n- [Troubleshooting guide](https://oss.callstack.com/react-native-testing-library/docs/guides/troubleshooting)\n\n## Community Resources\n\nCheck out our list of [Community Resources about RNTL](https://oss.callstack.com/react-native-testing-library/docs/guides/community-resources).\n\n## Made with ❤️ at Callstack\n\nReact Native Testing Library is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Callstack](https://callstack.com) is a group of React and React Native geeks, contact us at [hello@callstack.com](mailto:hello@callstack.com) if you need any help with these or just want to say hi!\n\nLike the project? ⚛️ [Join the team](https://callstack.com/careers/?utm_campaign=Senior_RN&utm_source=github&utm_medium=readme) who does amazing stuff for clients and drives React Native Open Source! 🔥\n\n---\n\nSupported and used by [Rally Health](https://www.rallyhealth.com/careers).\n\n<!-- badges -->\n\n[version-badge]: https://img.shields.io/npm/v/@testing-library/react-native.svg?style=flat-square\n[package]: https://www.npmjs.com/package/@testing-library/react-native\n[build-badge]: https://github.com/callstack/react-native-testing-library/actions/workflows/ci.yml/badge.svg\n[build]: https://github.com/callstack/react-native-testing-library/actions/workflows/ci.yml\n[coverage-badge]: https://img.shields.io/codecov/c/github/callstack/react-native-testing-library.svg\n[coverage]: https://codecov.io/github/callstack/react-native-testing-library\n[downloads-badge]: https://img.shields.io/npm/dm/@testing-library/react-native.svg?style=flat-square\n[downloads]: http://www.npmtrends.com/@testing-library/react-native\n[license-badge]: https://img.shields.io/npm/l/@testing-library/react-native.svg\n[license]: https://opensource.org/licenses/MIT\n[callstack-badge]: https://callstack.com/images/callstack-badge.svg\n[callstack]: https://callstack.com/open-source/?utm_source=github.com&utm_medium=referral&utm_campaign=react-native-testing-library&utm_term=readme\n",
  "bytes": 7716,
  "sha": "0eff3e1d70e19937776325bf8fb06ec1bc99560de7755082ec466c60e114932f",
  "repo_slug": "callstack/react-native-testing-library",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_callstack_react_native_testing_library_r_e610bc78/readme"
}