{
  "manifest": {
    "name": "@testing-library/react",
    "version": "13.4.0",
    "description": "Simple and complete React DOM testing utilities that encourage good testing practices.",
    "main": "dist/index.js",
    "types": "types/index.d.ts",
    "module": "dist/@testing-library/react.esm.js",
    "engines": {
      "node": ">=12"
    },
    "scripts": {
      "prebuild": "rimraf dist",
      "build": "npm-run-all --parallel build:main build:bundle:main build:bundle:pure",
      "build:bundle:main": "dotenv -e .bundle.main.env kcd-scripts build -- --bundle --no-clean",
      "build:bundle:pure": "dotenv -e .bundle.main.env -e .bundle.pure.env kcd-scripts build -- --bundle --no-clean",
      "build:main": "kcd-scripts build --no-clean",
      "format": "kcd-scripts format",
      "install:csb": "npm install",
      "lint": "kcd-scripts lint",
      "setup": "npm install && npm run validate -s",
      "test": "kcd-scripts test",
      "test:update": "npm test -- --updateSnapshot --coverage",
      "typecheck": "kcd-scripts typecheck --build types",
      "validate": "kcd-scripts validate"
    },
    "files": [
      "dist",
      "dont-cleanup-after-each.js",
      "pure.js",
      "pure.d.ts",
      "types/*.d.ts"
    ],
    "keywords": [
      "testing",
      "react",
      "ui",
      "dom",
      "jsdom",
      "unit",
      "integration",
      "functional",
      "end-to-end",
      "e2e"
    ],
    "author": {
      "name": "Kent C. Dodds",
      "email": "me@kentcdodds.com",
      "url": "https://kentcdodds.com"
    },
    "license": "MIT",
    "dependencies": {
      "@babel/runtime": "^7.12.5",
      "@testing-library/dom": "^8.5.0",
      "@types/react-dom": "^18.0.0"
    },
    "devDependencies": {
      "@testing-library/jest-dom": "^5.11.6",
      "dotenv-cli": "^4.0.0",
      "kcd-scripts": "^11.1.0",
      "npm-run-all": "^4.1.5",
      "react": "^18.0.0",
      "react-dom": "^18.0.0",
      "rimraf": "^3.0.2",
      "typescript": "^4.1.2"
    },
    "peerDependencies": {
      "react": "^18.0.0",
      "react-dom": "^18.0.0"
    },
    "eslintConfig": {
      "extends": "./node_modules/kcd-scripts/eslint.js",
      "globals": {
        "globalThis": "readonly"
      },
      "rules": {
        "react/prop-types": "off",
        "react/no-adjacent-inline-elements": "off",
        "import/no-unassigned-import": "off",
        "import/named": "off",
        "testing-library/no-container": "off",
        "testing-library/no-dom-import": "off",
        "testing-library/no-unnecessary-act": "off",
        "testing-library/prefer-user-event": "off"
      }
    },
    "eslintIgnore": [
      "node_modules",
      "coverage",
      "dist",
      "*.d.ts"
    ],
    "repository": {
      "type": "git",
      "url": "https://github.com/testing-library/react-testing-library"
    },
    "bugs": {
      "url": "https://github.com/testing-library/react-testing-library/issues"
    },
    "homepage": "https://github.com/testing-library/react-testing-library#readme",
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-@testing-library-react-13.4.0-6a31e3bf5951615593ad984e96b9e5e2d9380966-integrity/node_modules/@testing-library/react/package.json",
    "readmeFilename": "README.md",
    "readme": "<div align=\"center\">\n<h1>React Testing Library</h1>\n\n<a href=\"https://www.emojione.com/emoji/1f410\">\n  <img\n    height=\"80\"\n    width=\"80\"\n    alt=\"goat\"\n    src=\"https://raw.githubusercontent.com/testing-library/react-testing-library/main/other/goat.png\"\n  />\n</a>\n\n<p>Simple and complete React DOM testing utilities that encourage good testing\npractices.</p>\n\n<br />\n\n[**Read The Docs**](https://testing-library.com/react) |\n[Edit the docs](https://github.com/testing-library/testing-library-docs)\n\n<br />\n</div>\n\n<hr />\n\n<!-- prettier-ignore-start -->\n[![Build Status][build-badge]][build]\n[![Code Coverage][coverage-badge]][coverage]\n[![version][version-badge]][package]\n[![downloads][downloads-badge]][npmtrends]\n[![MIT License][license-badge]][license]\n[![All Contributors][all-contributors-badge]](#contributors)\n[![PRs Welcome][prs-badge]][prs]\n[![Code of Conduct][coc-badge]][coc]\n[![Discord][discord-badge]][discord]\n\n[![Watch on GitHub][github-watch-badge]][github-watch]\n[![Star on GitHub][github-star-badge]][github-star]\n[![Tweet][twitter-badge]][twitter]\n<!-- prettier-ignore-end -->\n\n<div align=\"center\">\n  <a href=\"https://testingjavascript.com\">\n    <img\n      width=\"500\"\n      alt=\"TestingJavaScript.com Learn the smart, efficient way to test any JavaScript application.\"\n      src=\"https://raw.githubusercontent.com/testing-library/react-testing-library/main/other/testingjavascript.jpg\"\n    />\n  </a>\n</div>\n\n## Table of Contents\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n\n- [The problem](#the-problem)\n- [The solution](#the-solution)\n- [Installation](#installation)\n  - [Suppressing unnecessary warnings on React DOM 16.8](#suppressing-unnecessary-warnings-on-react-dom-168)\n- [Examples](#examples)\n  - [Basic Example](#basic-example)\n  - [Complex Example](#complex-example)\n  - [More Examples](#more-examples)\n- [Hooks](#hooks)\n- [Guiding Principles](#guiding-principles)\n- [Docs](#docs)\n- [Issues](#issues)\n  - [🐛 Bugs](#-bugs)\n  - [💡 Feature Requests](#-feature-requests)\n  - [❓ Questions](#-questions)\n- [Contributors](#contributors)\n- [LICENSE](#license)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n## The problem\n\nYou want to write maintainable tests for your React components. As a part of\nthis goal, you want your tests to avoid including implementation details of your\ncomponents and rather focus on making your tests give you the confidence for\nwhich they are intended. As part of this, you want your testbase to be\nmaintainable in the long run so refactors of your components (changes to\nimplementation but not functionality) don't break your tests and slow you and\nyour team down.\n\n## The solution\n\nThe `React Testing Library` is a very lightweight solution for testing React\ncomponents. It provides light utility functions on top of `react-dom` and\n`react-dom/test-utils`, in a way that encourages better testing practices. Its\nprimary guiding principle is:\n\n> [The more your tests resemble the way your software is used, the more\n> confidence they can give you.][guiding-principle]\n\n## Installation\n\nThis module is distributed via [npm][npm] which is bundled with [node][node] and\nshould be installed as one of your project's `devDependencies`:\n\n```\nnpm install --save-dev @testing-library/react\n```\n\nor\n\nfor installation via [yarn][yarn]\n\n```\nyarn add --dev @testing-library/react\n```\n\nThis library has `peerDependencies` listings for `react` and `react-dom`.\n\nYou may also be interested in installing `@testing-library/jest-dom` so you can\nuse [the custom jest matchers](https://github.com/testing-library/jest-dom).\n\n> [**Docs**](https://testing-library.com/react)\n\n### Suppressing unnecessary warnings on React DOM 16.8\n\nThere is a known compatibility issue with React DOM 16.8 where you will see the\nfollowing warning:\n\n```\nWarning: An update to ComponentName inside a test was not wrapped in act(...).\n```\n\nIf you cannot upgrade to React DOM 16.9, you may suppress the warnings by adding\nthe following snippet to your test configuration\n([learn more](https://github.com/testing-library/react-testing-library/issues/281)):\n\n```js\n// this is just a little hack to silence a warning that we'll get until we\n// upgrade to 16.9. See also: https://github.com/facebook/react/pull/14853\nconst originalError = console.error\nbeforeAll(() => {\n  console.error = (...args) => {\n    if (/Warning.*not wrapped in act/.test(args[0])) {\n      return\n    }\n    originalError.call(console, ...args)\n  }\n})\n\nafterAll(() => {\n  console.error = originalError\n})\n```\n\n## Examples\n\n### Basic Example\n\n```jsx\n// hidden-message.js\nimport * as React from 'react'\n\n// NOTE: React Testing Library works well with React Hooks and classes.\n// Your tests will be the same regardless of how you write your components.\nfunction HiddenMessage({children}) {\n  const [showMessage, setShowMessage] = React.useState(false)\n  return (\n    <div>\n      <label htmlFor=\"toggle\">Show Message</label>\n      <input\n        id=\"toggle\"\n        type=\"checkbox\"\n        onChange={e => setShowMessage(e.target.checked)}\n        checked={showMessage}\n      />\n      {showMessage ? children : null}\n    </div>\n  )\n}\n\nexport default HiddenMessage\n```\n\n```jsx\n// __tests__/hidden-message.js\n// these imports are something you'd normally configure Jest to import for you\n// automatically. Learn more in the setup docs: https://testing-library.com/docs/react-testing-library/setup#cleanup\nimport '@testing-library/jest-dom'\n// NOTE: jest-dom adds handy assertions to Jest and is recommended, but not required\n\nimport * as React from 'react'\nimport {render, fireEvent, screen} from '@testing-library/react'\nimport HiddenMessage from '../hidden-message'\n\ntest('shows the children when the checkbox is checked', () => {\n  const testMessage = 'Test Message'\n  render(<HiddenMessage>{testMessage}</HiddenMessage>)\n\n  // query* functions will return the element or null if it cannot be found\n  // get* functions will return the element or throw an error if it cannot be found\n  expect(screen.queryByText(testMessage)).toBeNull()\n\n  // the queries can accept a regex to make your selectors more resilient to content tweaks and changes.\n  fireEvent.click(screen.getByLabelText(/show/i))\n\n  // .toBeInTheDocument() is an assertion that comes from jest-dom\n  // otherwise you could use .toBeDefined()\n  expect(screen.getByText(testMessage)).toBeInTheDocument()\n})\n```\n\n### Complex Example\n\n```jsx\n// login.js\nimport * as React from 'react'\n\nfunction Login() {\n  const [state, setState] = React.useReducer((s, a) => ({...s, ...a}), {\n    resolved: false,\n    loading: false,\n    error: null,\n  })\n\n  function handleSubmit(event) {\n    event.preventDefault()\n    const {usernameInput, passwordInput} = event.target.elements\n\n    setState({loading: true, resolved: false, error: null})\n\n    window\n      .fetch('/api/login', {\n        method: 'POST',\n        headers: {'Content-Type': 'application/json'},\n        body: JSON.stringify({\n          username: usernameInput.value,\n          password: passwordInput.value,\n        }),\n      })\n      .then(r => r.json().then(data => (r.ok ? data : Promise.reject(data))))\n      .then(\n        user => {\n          setState({loading: false, resolved: true, error: null})\n          window.localStorage.setItem('token', user.token)\n        },\n        error => {\n          setState({loading: false, resolved: false, error: error.message})\n        },\n      )\n  }\n\n  return (\n    <div>\n      <form onSubmit={handleSubmit}>\n        <div>\n          <label htmlFor=\"usernameInput\">Username</label>\n          <input id=\"usernameInput\" />\n        </div>\n        <div>\n          <label htmlFor=\"passwordInput\">Password</label>\n          <input id=\"passwordInput\" type=\"password\" />\n        </div>\n        <button type=\"submit\">Submit{state.loading ? '...' : null}</button>\n      </form>\n      {state.error ? <div role=\"alert\">{state.error}</div> : null}\n      {state.resolved ? (\n        <div role=\"alert\">Congrats! You're signed in!</div>\n      ) : null}\n    </div>\n  )\n}\n\nexport default Login\n```\n\n```jsx\n// __tests__/login.js\n// again, these first two imports are something you'd normally handle in\n// your testing framework configuration rather than importing them in every file.\nimport '@testing-library/jest-dom'\nimport * as React from 'react'\n// import API mocking utilities from Mock Service Worker.\nimport {rest} from 'msw'\nimport {setupServer} from 'msw/node'\n// import testing utilities\nimport {render, fireEvent, screen} from '@testing-library/react'\nimport Login from '../login'\n\nconst fakeUserResponse = {token: 'fake_user_token'}\nconst server = setupServer(\n  rest.post('/api/login', (req, res, ctx) => {\n    return res(ctx.json(fakeUserResponse))\n  }),\n)\n\nbeforeAll(() => server.listen())\nafterEach(() => {\n  server.resetHandlers()\n  window.localStorage.removeItem('token')\n})\nafterAll(() => server.close())\n\ntest('allows the user to login successfully', async () => {\n  render(<Login />)\n\n  // fill out the form\n  fireEvent.change(screen.getByLabelText(/username/i), {\n    target: {value: 'chuck'},\n  })\n  fireEvent.change(screen.getByLabelText(/password/i), {\n    target: {value: 'norris'},\n  })\n\n  fireEvent.click(screen.getByText(/submit/i))\n\n  // just like a manual tester, we'll instruct our test to wait for the alert\n  // to show up before continuing with our assertions.\n  const alert = await screen.findByRole('alert')\n\n  // .toHaveTextContent() comes from jest-dom's assertions\n  // otherwise you could use expect(alert.textContent).toMatch(/congrats/i)\n  // but jest-dom will give you better error messages which is why it's recommended\n  expect(alert).toHaveTextContent(/congrats/i)\n  expect(window.localStorage.getItem('token')).toEqual(fakeUserResponse.token)\n})\n\ntest('handles server exceptions', async () => {\n  // mock the server error response for this test suite only.\n  server.use(\n    rest.post('/api/login', (req, res, ctx) => {\n      return res(ctx.status(500), ctx.json({message: 'Internal server error'}))\n    }),\n  )\n\n  render(<Login />)\n\n  // fill out the form\n  fireEvent.change(screen.getByLabelText(/username/i), {\n    target: {value: 'chuck'},\n  })\n  fireEvent.change(screen.getByLabelText(/password/i), {\n    target: {value: 'norris'},\n  })\n\n  fireEvent.click(screen.getByText(/submit/i))\n\n  // wait for the error message\n  const alert = await screen.findByRole('alert')\n\n  expect(alert).toHaveTextContent(/internal server error/i)\n  expect(window.localStorage.getItem('token')).toBeNull()\n})\n```\n\n> We recommend using [Mock Service Worker](https://github.com/mswjs/msw) library\n> to declaratively mock API communication in your tests instead of stubbing\n> `window.fetch`, or relying on third-party adapters.\n\n### More Examples\n\n> We're in the process of moving examples to the\n> [docs site](https://testing-library.com/docs/example-codesandbox)\n\nYou'll find runnable examples of testing with different libraries in\n[the `react-testing-library-examples` codesandbox](https://codesandbox.io/s/github/kentcdodds/react-testing-library-examples).\nSome included are:\n\n- [`react-redux`](https://codesandbox.io/s/github/kentcdodds/react-testing-library-examples/tree/main/?fontsize=14&module=%2Fsrc%2F__tests__%2Freact-redux.js&previewwindow=tests)\n- [`react-router`](https://codesandbox.io/s/github/kentcdodds/react-testing-library-examples/tree/main/?fontsize=14&module=%2Fsrc%2F__tests__%2Freact-router.js&previewwindow=tests)\n- [`react-context`](https://codesandbox.io/s/github/kentcdodds/react-testing-library-examples/tree/main/?fontsize=14&module=%2Fsrc%2F__tests__%2Freact-context.js&previewwindow=tests)\n\nYou can also find React Testing Library examples at\n[react-testing-examples.com](https://react-testing-examples.com/jest-rtl/).\n\n## Hooks\n\nIf you are interested in testing a custom hook, check out [React Hooks Testing\nLibrary][react-hooks-testing-library].\n\n> NOTE: it is not recommended to test single-use custom hooks in isolation from\n> the components where it's being used. It's better to test the component that's\n> using the hook rather than the hook itself. The `React Hooks Testing Library`\n> is intended to be used for reusable hooks/libraries.\n\n## Guiding Principles\n\n> [The more your tests resemble the way your software is used, the more\n> confidence they can give you.][guiding-principle]\n\nWe try to only expose methods and utilities that encourage you to write tests\nthat closely resemble how your React components are used.\n\nUtilities are included in this project based on the following guiding\nprinciples:\n\n1.  If it relates to rendering components, it deals with DOM nodes rather than\n    component instances, nor should it encourage dealing with component\n    instances.\n2.  It should be generally useful for testing individual React components or\n    full React applications. While this library is focused on `react-dom`,\n    utilities could be included even if they don't directly relate to\n    `react-dom`.\n3.  Utility implementations and APIs should be simple and flexible.\n\nMost importantly, we want React Testing Library to be pretty light-weight,\nsimple, and easy to understand.\n\n## Docs\n\n[**Read The Docs**](https://testing-library.com/react) |\n[Edit the docs](https://github.com/testing-library/testing-library-docs)\n\n## Issues\n\nLooking to contribute? Look for the [Good First Issue][good-first-issue] label.\n\n### 🐛 Bugs\n\nPlease file an issue for bugs, missing documentation, or unexpected behavior.\n\n[**See Bugs**][bugs]\n\n### 💡 Feature Requests\n\nPlease file an issue to suggest new features. Vote on feature requests by adding\na 👍. This helps maintainers prioritize what to work on.\n\n[**See Feature Requests**][requests]\n\n### ❓ Questions\n\nFor questions related to using the library, please visit a support community\ninstead of filing an issue on GitHub.\n\n- [Discord][discord]\n- [Stack Overflow][stackoverflow]\n\n## Contributors\n\nThanks goes to these people ([emoji key][emojis]):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tr>\n    <td align=\"center\"><a href=\"https://kentcdodds.com\"><img src=\"https://avatars.githubusercontent.com/u/1500684?v=3?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kent C. Dodds</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=kentcdodds\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=kentcdodds\" title=\"Documentation\">📖</a> <a href=\"#infra-kentcdodds\" title=\"Infrastructure (Hosting, Build-Tools, etc)\">🚇</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=kentcdodds\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"http://audiolion.github.io\"><img src=\"https://avatars1.githubusercontent.com/u/2430381?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ryan Castner</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=audiolion\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://www.dnlsandiego.com\"><img src=\"https://avatars0.githubusercontent.com/u/8008023?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Daniel Sandiego</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=dnlsandiego\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/Miklet\"><img src=\"https://avatars2.githubusercontent.com/u/12592677?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Paweł Mikołajczyk</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=Miklet\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://co.linkedin.com/in/alejandronanez/\"><img src=\"https://avatars3.githubusercontent.com/u/464978?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alejandro Ñáñez Ortiz</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=alejandronanez\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/pbomb\"><img src=\"https://avatars0.githubusercontent.com/u/1402095?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matt Parrish</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Apbomb\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=pbomb\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=pbomb\" title=\"Documentation\">📖</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=pbomb\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://github.com/wKovacs64\"><img src=\"https://avatars1.githubusercontent.com/u/1288694?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Justin Hall</b></sub></a><br /><a href=\"#platform-wKovacs64\" title=\"Packaging/porting to new platform\">📦</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/antoaravinth\"><img src=\"https://avatars1.githubusercontent.com/u/1241511?s=460&v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Anto Aravinth</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=antoaravinth\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=antoaravinth\" title=\"Tests\">⚠️</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=antoaravinth\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/JonahMoses\"><img src=\"https://avatars2.githubusercontent.com/u/3462296?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jonah Moses</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=JonahMoses\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://team.thebrain.pro\"><img src=\"https://avatars1.githubusercontent.com/u/4002543?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Łukasz Gandecki</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=lgandecki\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=lgandecki\" title=\"Tests\">⚠️</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=lgandecki\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://sompylasar.github.io\"><img src=\"https://avatars2.githubusercontent.com/u/498274?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ivan Babak</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Asompylasar\" title=\"Bug reports\">🐛</a> <a href=\"#ideas-sompylasar\" title=\"Ideas, Planning, & Feedback\">🤔</a></td>\n    <td align=\"center\"><a href=\"https://github.com/jday3\"><img src=\"https://avatars3.githubusercontent.com/u/4439618?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jesse Day</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jday3\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://gnapse.github.io\"><img src=\"https://avatars0.githubusercontent.com/u/15199?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ernesto García</b></sub></a><br /><a href=\"#question-gnapse\" title=\"Answering Questions\">💬</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=gnapse\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=gnapse\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://jomaxx.com\"><img src=\"https://avatars2.githubusercontent.com/u/2747424?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Josef Maxx Blake</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jomaxx\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=jomaxx\" title=\"Documentation\">📖</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=jomaxx\" title=\"Tests\">⚠️</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://twitter.com/baranovskim\"><img src=\"https://avatars1.githubusercontent.com/u/29602306?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Michal Baranowski</b></sub></a><br /><a href=\"#blog-mbaranovski\" title=\"Blogposts\">📝</a> <a href=\"#tutorial-mbaranovski\" title=\"Tutorials\">✅</a></td>\n    <td align=\"center\"><a href=\"https://github.com/aputhin\"><img src=\"https://avatars3.githubusercontent.com/u/13985684?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Arthur Puthin</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=aputhin\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/thchia\"><img src=\"https://avatars2.githubusercontent.com/u/21194045?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Thomas Chia</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=thchia\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=thchia\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://ilegra.com/\"><img src=\"https://avatars3.githubusercontent.com/u/20430611?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Thiago Galvani</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=thiagopaiva99\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://Chriswcs.github.io\"><img src=\"https://avatars1.githubusercontent.com/u/19828824?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Christian</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ChrisWcs\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://alexkrolick.com\"><img src=\"https://avatars3.githubusercontent.com/u/1571667?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alex Krolick</b></sub></a><br /><a href=\"#question-alexkrolick\" title=\"Answering Questions\">💬</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=alexkrolick\" title=\"Documentation\">📖</a> <a href=\"#example-alexkrolick\" title=\"Examples\">💡</a> <a href=\"#ideas-alexkrolick\" title=\"Ideas, Planning, & Feedback\">🤔</a></td>\n    <td align=\"center\"><a href=\"https://github.com/johann-sonntagbauer\"><img src=\"https://avatars3.githubusercontent.com/u/1239401?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Johann Hubert Sonntagbauer</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=johann-sonntagbauer\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=johann-sonntagbauer\" title=\"Documentation\">📖</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=johann-sonntagbauer\" title=\"Tests\">⚠️</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"http://www.maddijoyce.com\"><img src=\"https://avatars2.githubusercontent.com/u/2224291?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Maddi Joyce</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=maddijoyce\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://www.vicesoftware.com\"><img src=\"https://avatars2.githubusercontent.com/u/10080111?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ryan Vice</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=RyanAtViceSoftware\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://ianwilson.io\"><img src=\"https://avatars1.githubusercontent.com/u/7942604?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ian Wilson</b></sub></a><br /><a href=\"#blog-iwilsonq\" title=\"Blogposts\">📝</a> <a href=\"#tutorial-iwilsonq\" title=\"Tutorials\">✅</a></td>\n    <td align=\"center\"><a href=\"https://github.com/InExtremaRes\"><img src=\"https://avatars2.githubusercontent.com/u/1635491?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Daniel</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3AInExtremaRes\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=InExtremaRes\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/Gpx\"><img src=\"https://avatars0.githubusercontent.com/u/767959?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Giorgio Polvara</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3AGpx\" title=\"Bug reports\">🐛</a> <a href=\"#ideas-Gpx\" title=\"Ideas, Planning, & Feedback\">🤔</a></td>\n    <td align=\"center\"><a href=\"https://github.com/jgoz\"><img src=\"https://avatars2.githubusercontent.com/u/132233?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>John Gozde</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jgoz\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/SavePointSam\"><img src=\"https://avatars0.githubusercontent.com/u/8203211?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sam Horton</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=SavePointSam\" title=\"Documentation\">📖</a> <a href=\"#example-SavePointSam\" title=\"Examples\">💡</a> <a href=\"#ideas-SavePointSam\" title=\"Ideas, Planning, & Feedback\">🤔</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"http://www.richardkotze.com\"><img src=\"https://avatars2.githubusercontent.com/u/10452163?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Richard Kotze (mobile)</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=rkotze\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/sotobuild\"><img src=\"https://avatars2.githubusercontent.com/u/10819833?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Brahian E. Soto Mercedes</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=sotobuild\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/bdelaforest\"><img src=\"https://avatars2.githubusercontent.com/u/7151559?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Benoit de La Forest</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=bdelaforest\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/thesalah\"><img src=\"https://avatars3.githubusercontent.com/u/6624197?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Salah</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=thesalah\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=thesalah\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"http://gordonizer.com\"><img src=\"https://avatars2.githubusercontent.com/u/370054?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Adam Gordon</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Aicfantv\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=icfantv\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://silvenon.com\"><img src=\"https://avatars2.githubusercontent.com/u/471278?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matija Marohnić</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=silvenon\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/Dajust\"><img src=\"https://avatars3.githubusercontent.com/u/8015514?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Justice Mba</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=Dajust\" title=\"Documentation\">📖</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://markpollmann.com/\"><img src=\"https://avatars2.githubusercontent.com/u/5286559?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mark Pollmann</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=MarkPollmann\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/ehteshamkafeel\"><img src=\"https://avatars1.githubusercontent.com/u/1213123?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ehtesham Kafeel</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ehteshamkafeel\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=ehteshamkafeel\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://jpavon.com\"><img src=\"https://avatars2.githubusercontent.com/u/1493505?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Julio Pavón</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jpavon\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://www.duncanleung.com/\"><img src=\"https://avatars3.githubusercontent.com/u/1765048?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Duncan L</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=duncanleung\" title=\"Documentation\">📖</a> <a href=\"#example-duncanleung\" title=\"Examples\">💡</a></td>\n    <td align=\"center\"><a href=\"https://www.linkedin.com/in/tyagow/?locale=en_US\"><img src=\"https://avatars1.githubusercontent.com/u/700778?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tiago Almeida</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=tyagow\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://rbrtsmith.com/\"><img src=\"https://avatars2.githubusercontent.com/u/4982001?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Robert Smith</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Arbrtsmith\" title=\"Bug reports\">🐛</a></td>\n    <td align=\"center\"><a href=\"https://offbyone.tech\"><img src=\"https://avatars0.githubusercontent.com/u/1700355?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Zach Green</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=zgreen\" title=\"Documentation\">📖</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/dadamssg\"><img src=\"https://avatars3.githubusercontent.com/u/881986?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>dadamssg</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=dadamssg\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://www.yaabed.com/\"><img src=\"https://avatars0.githubusercontent.com/u/8734097?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Yazan Aabed</b></sub></a><br /><a href=\"#blog-YazanAabeed\" title=\"Blogposts\">📝</a></td>\n    <td align=\"center\"><a href=\"https://github.com/timbonicus\"><img src=\"https://avatars0.githubusercontent.com/u/556258?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tim</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Atimbonicus\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=timbonicus\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=timbonicus\" title=\"Documentation\">📖</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=timbonicus\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"http://divyanshu.xyz\"><img src=\"https://avatars3.githubusercontent.com/u/6682655?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Divyanshu Maithani</b></sub></a><br /><a href=\"#tutorial-divyanshu013\" title=\"Tutorials\">✅</a> <a href=\"#video-divyanshu013\" title=\"Videos\">📹</a></td>\n    <td align=\"center\"><a href=\"https://www.linkedin.com/in/metagrover\"><img src=\"https://avatars2.githubusercontent.com/u/9116042?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Deepak Grover</b></sub></a><br /><a href=\"#tutorial-metagrover\" title=\"Tutorials\">✅</a> <a href=\"#video-metagrover\" title=\"Videos\">📹</a></td>\n    <td align=\"center\"><a href=\"https://github.com/eyalcohen4\"><img src=\"https://avatars0.githubusercontent.com/u/16276358?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Eyal Cohen</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=eyalcohen4\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/petermakowski\"><img src=\"https://avatars3.githubusercontent.com/u/7452681?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Peter Makowski</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=petermakowski\" title=\"Documentation\">📖</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/Michielnuyts\"><img src=\"https://avatars2.githubusercontent.com/u/20361668?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Michiel Nuyts</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=Michielnuyts\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/joeynimu\"><img src=\"https://avatars0.githubusercontent.com/u/1195863?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Joe Ng'ethe</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=joeynimu\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=joeynimu\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/Enikol\"><img src=\"https://avatars3.githubusercontent.com/u/19998290?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kate</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=Enikol\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://www.seanrparker.com\"><img src=\"https://avatars1.githubusercontent.com/u/11980217?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sean</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=SeanRParker\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://jlongster.com\"><img src=\"https://avatars2.githubusercontent.com/u/17031?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>James Long</b></sub></a><br /><a href=\"#ideas-jlongster\" title=\"Ideas, Planning, & Feedback\">🤔</a> <a href=\"#platform-jlongster\" title=\"Packaging/porting to new platform\">📦</a></td>\n    <td align=\"center\"><a href=\"https://github.com/hhagely\"><img src=\"https://avatars1.githubusercontent.com/u/10118777?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Herb Hagely</b></sub></a><br /><a href=\"#example-hhagely\" title=\"Examples\">💡</a></td>\n    <td align=\"center\"><a href=\"http://www.wendtedesigns.com/\"><img src=\"https://avatars2.githubusercontent.com/u/5779538?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alex Wendte</b></sub></a><br /><a href=\"#example-themostcolm\" title=\"Examples\">💡</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"http://www.aboutmonica.com\"><img src=\"https://avatars0.githubusercontent.com/u/6998954?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Monica Powell</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=M0nica\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://sivkoff.com\"><img src=\"https://avatars1.githubusercontent.com/u/2699953?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Vitaly Sivkov</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=sivkoff\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/weyert\"><img src=\"https://avatars3.githubusercontent.com/u/7049?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Weyert de Boer</b></sub></a><br /><a href=\"#ideas-weyert\" title=\"Ideas, Planning, & Feedback\">🤔</a> <a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Aweyert\" title=\"Reviewed Pull Requests\">👀</a> <a href=\"#design-weyert\" title=\"Design\">🎨</a></td>\n    <td align=\"center\"><a href=\"https://github.com/EstebanMarin\"><img src=\"https://avatars3.githubusercontent.com/u/13613037?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>EstebanMarin</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=EstebanMarin\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/vctormb\"><img src=\"https://avatars2.githubusercontent.com/u/13953703?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Victor Martins</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=vctormb\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/RoystonS\"><img src=\"https://avatars0.githubusercontent.com/u/19773?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Royston Shufflebotham</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3ARoystonS\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=RoystonS\" title=\"Documentation\">📖</a> <a href=\"#example-RoystonS\" title=\"Examples\">💡</a></td>\n    <td align=\"center\"><a href=\"https://github.com/chrbala\"><img src=\"https://avatars0.githubusercontent.com/u/6834804?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>chrbala</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=chrbala\" title=\"Code\">💻</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"http://donavon.com\"><img src=\"https://avatars3.githubusercontent.com/u/887639?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Donavon West</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=donavon\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=donavon\" title=\"Documentation\">📖</a> <a href=\"#ideas-donavon\" title=\"Ideas, Planning, & Feedback\">🤔</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=donavon\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://github.com/maisano\"><img src=\"https://avatars2.githubusercontent.com/u/689081?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Richard Maisano</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=maisano\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://www.marcobiedermann.com\"><img src=\"https://avatars0.githubusercontent.com/u/5244986?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Marco Biedermann</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=marcobiedermann\" title=\"Code\">💻</a> <a href=\"#maintenance-marcobiedermann\" title=\"Maintenance\">🚧</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=marcobiedermann\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://github.com/alexzherdev\"><img src=\"https://avatars3.githubusercontent.com/u/93752?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alex Zherdev</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Aalexzherdev\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=alexzherdev\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/Andrewmat\"><img src=\"https://avatars0.githubusercontent.com/u/5133846?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>André Matulionis dos Santos</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=Andrewmat\" title=\"Code\">💻</a> <a href=\"#example-Andrewmat\" title=\"Examples\">💡</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=Andrewmat\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://github.com/FredyC\"><img src=\"https://avatars0.githubusercontent.com/u/1096340?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Daniel K.</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3AFredyC\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=FredyC\" title=\"Code\">💻</a> <a href=\"#ideas-FredyC\" title=\"Ideas, Planning, & Feedback\">🤔</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=FredyC\" title=\"Tests\">⚠️</a> <a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3AFredyC\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://github.com/mohamedmagdy17593\"><img src=\"https://avatars0.githubusercontent.com/u/40938625?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>mohamedmagdy17593</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=mohamedmagdy17593\" title=\"Code\">💻</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"http://lorensr.me\"><img src=\"https://avatars2.githubusercontent.com/u/251288?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Loren ☺️</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=lorensr\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/MarkFalconbridge\"><img src=\"https://avatars1.githubusercontent.com/u/20678943?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>MarkFalconbridge</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3AMarkFalconbridge\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=MarkFalconbridge\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/viniciusavieira\"><img src=\"https://avatars0.githubusercontent.com/u/2073019?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Vinicius</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=viniciusavieira\" title=\"Documentation\">📖</a> <a href=\"#example-viniciusavieira\" title=\"Examples\">💡</a></td>\n    <td align=\"center\"><a href=\"https://github.com/pschyma\"><img src=\"https://avatars2.githubusercontent.com/u/2489928?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Peter Schyma</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=pschyma\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/ianschmitz\"><img src=\"https://avatars1.githubusercontent.com/u/6355370?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ian Schmitz</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ianschmitz\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/joual\"><img src=\"https://avatars0.githubusercontent.com/u/157877?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Joel Marcotte</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Ajoual\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=joual\" title=\"Tests\">⚠️</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=joual\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://aledustet.com\"><img src=\"https://avatars3.githubusercontent.com/u/2413802?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alejandro Dustet</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Aaledustet\" title=\"Bug reports\">🐛</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/bcarroll22\"><img src=\"https://avatars2.githubusercontent.com/u/11020406?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Brandon Carroll</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=bcarroll22\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/lucas0707\"><img src=\"https://avatars1.githubusercontent.com/u/26284338?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Lucas Machado</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=lucas0707\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://pascalduez.me\"><img src=\"https://avatars3.githubusercontent.com/u/335467?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Pascal Duez</b></sub></a><br /><a href=\"#platform-pascalduez\" title=\"Packaging/porting to new platform\">📦</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/minh_ngvyen\"><img src=\"https://avatars3.githubusercontent.com/u/2852660?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Minh Nguyen</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=NMinhNguyen\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://iababy46.blogspot.tw/\"><img src=\"https://avatars0.githubusercontent.com/u/11155585?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>LiaoJimmy</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=LiaoJimmy\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/threepointone\"><img src=\"https://avatars2.githubusercontent.com/u/18808?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sunil Pai</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=threepointone\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=threepointone\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"http://twitter.com/dan_abramov\"><img src=\"https://avatars0.githubusercontent.com/u/810438?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Dan Abramov</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Agaearon\" title=\"Reviewed Pull Requests\">👀</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/ChristianMurphy\"><img src=\"https://avatars3.githubusercontent.com/u/3107513?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Christian Murphy</b></sub></a><br /><a href=\"#infra-ChristianMurphy\" title=\"Infrastructure (Hosting, Build-Tools, etc)\">🚇</a></td>\n    <td align=\"center\"><a href=\"https://jeetiss.github.io/\"><img src=\"https://avatars1.githubusercontent.com/u/6726016?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ivakhnenko Dmitry</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jeetiss\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://ghuser.io/jamesgeorge007\"><img src=\"https://avatars2.githubusercontent.com/u/25279263?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>James George</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jamesgeorge007\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://joaofernandes.me/\"><img src=\"https://avatars1.githubusercontent.com/u/1075053?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>João Fernandes</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=JSFernandes\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/alejandroperea\"><img src=\"https://avatars3.githubusercontent.com/u/6084749?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alejandro Perea</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Aalejandroperea\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://nickmccurdy.com/\"><img src=\"https://avatars0.githubusercontent.com/u/927220?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Nick McCurdy</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Anickmccurdy\" title=\"Reviewed Pull Requests\">👀</a> <a href=\"#question-nickmccurdy\" title=\"Answering Questions\">💬</a> <a href=\"#infra-nickmccurdy\" title=\"Infrastructure (Hosting, Build-Tools, etc)\">🚇</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/sebsilbermann\"><img src=\"https://avatars3.githubusercontent.com/u/12292047?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sebastian Silbermann</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Aeps1lon\" title=\"Reviewed Pull Requests\">👀</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://afontcu.dev\"><img src=\"https://avatars0.githubusercontent.com/u/9197791?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Adrià Fontcuberta</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Aafontcu\" title=\"Reviewed Pull Requests\">👀</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=afontcu\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://blog.johnnyreilly.com/\"><img src=\"https://avatars0.githubusercontent.com/u/1010525?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>John Reilly</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Ajohnnyreilly\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://michaeldeboey.be\"><img src=\"https://avatars3.githubusercontent.com/u/6643991?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Michaël De Boey</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3AMichaelDeBoey\" title=\"Reviewed Pull Requests\">👀</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=MichaelDeBoey\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://cimbul.com\"><img src=\"https://avatars2.githubusercontent.com/u/927923?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tim Yates</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Acimbul\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://github.com/eventualbuddha\"><img src=\"https://avatars3.githubusercontent.com/u/1938?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Brian Donovan</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=eventualbuddha\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/JaysQubeXon\"><img src=\"https://avatars1.githubusercontent.com/u/18309230?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Noam Gabriel Jacobson</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=JaysQubeXon\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/rvdkooy\"><img src=\"https://avatars1.githubusercontent.com/u/4119960?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ronald van der Kooij</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=rvdkooy\" title=\"Tests\">⚠️</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=rvdkooy\" title=\"Code\">💻</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/aayushrajvanshi\"><img src=\"https://avatars0.githubusercontent.com/u/14968551?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Aayush Rajvanshi</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=aayushrajvanshi\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://elyalamillo.com\"><img src=\"https://avatars2.githubusercontent.com/u/24350492?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ely Alamillo</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ely-alamillo\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=ely-alamillo\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://github.com/danieljcafonso\"><img src=\"https://avatars3.githubusercontent.com/u/35337607?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Daniel Afonso</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=danieljcafonso\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=danieljcafonso\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"http://www.laurensbosscher.nl\"><img src=\"https://avatars0.githubusercontent.com/u/13363196?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Laurens Bosscher</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=LaurensBosscher\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/__sakito__\"><img src=\"https://avatars1.githubusercontent.com/u/15010907?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sakito Mukai</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=sakito21\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://turkerteke.com\"><img src=\"https://avatars3.githubusercontent.com/u/12457162?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Türker Teke</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=tteke\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://linkedin.com/in/zachbrogan\"><img src=\"https://avatars1.githubusercontent.com/u/319162?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Zach Brogan</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=zbrogz\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=zbrogz\" title=\"Tests\">⚠️</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://ryota-murakami.github.io/\"><img src=\"https://avatars2.githubusercontent.com/u/5501268?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ryota Murakami</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ryota-murakami\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/hottmanmichael\"><img src=\"https://avatars3.githubusercontent.com/u/10534502?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Michael Hottman</b></sub></a><br /><a href=\"#ideas-hottmanmichael\" title=\"Ideas, Planning, & Feedback\">🤔</a></td>\n    <td align=\"center\"><a href=\"https://github.com/stevenfitzpatrick\"><img src=\"https://avatars0.githubusercontent.com/u/23268855?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Steven Fitzpatrick</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Astevenfitzpatrick\" title=\"Bug reports\">🐛</a></td>\n    <td align=\"center\"><a href=\"https://github.com/juangl\"><img src=\"https://avatars0.githubusercontent.com/u/1887029?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Juan Je García</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=juangl\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://ghuser.io/Ishaan28malik\"><img src=\"https://avatars3.githubusercontent.com/u/27343592?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Championrunner</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=Ishaan28malik\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/samtsai\"><img src=\"https://avatars0.githubusercontent.com/u/225526?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sam Tsai</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=samtsai\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=samtsai\" title=\"Tests\">⚠️</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=samtsai\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://www.echooff.dev\"><img src=\"https://avatars0.githubusercontent.com/u/149248?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Christian Rackerseder</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=screendriver\" title=\"Code\">💻</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/NiGhTTraX\"><img src=\"https://avatars0.githubusercontent.com/u/485061?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Andrei Picus</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3ANiGhTTraX\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3ANiGhTTraX\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://redd.one\"><img src=\"https://avatars3.githubusercontent.com/u/14984911?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Artem Zakharchenko</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=kettanaito\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://michaelsiek.com\"><img src=\"https://avatars0.githubusercontent.com/u/45568605?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Michael</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=michael-siek\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://2dubbing.tistory.com\"><img src=\"https://avatars2.githubusercontent.com/u/15885679?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Braden Lee</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=2dubbing\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://kamranicus.com/\"><img src=\"https://avatars1.githubusercontent.com/u/563819?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kamran Ayub</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=kamranayub\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=kamranayub\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/matanbobi\"><img src=\"https://avatars2.githubusercontent.com/u/12711091?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matan Borenkraout</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=MatanBobi\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://ryanbigg.com\"><img src=\"https://avatars3.githubusercontent.com/u/2687?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ryan Bigg</b></sub></a><br /><a href=\"#maintenance-radar\" title=\"Maintenance\">🚧</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://antonhalim.com\"><img src=\"https://avatars1.githubusercontent.com/u/10498035?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Anton Halim</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=antonhalim\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"http://artmalko.ru\"><img src=\"https://avatars0.githubusercontent.com/u/1823689?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Artem Malko</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=artem-malko\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://gerritalex.de\"><img src=\"https://avatars1.githubusercontent.com/u/29307652?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Gerrit Alex</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ljosberinn\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/karthick3018\"><img src=\"https://avatars1.githubusercontent.com/u/47154512?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Karthick Raja</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=karthick3018\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/theashraf\"><img src=\"https://avatars1.githubusercontent.com/u/39750790?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Abdelrahman Ashraf</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=theashraf\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/lidoravitan\"><img src=\"https://avatars0.githubusercontent.com/u/35113398?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Lidor Avitan</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=lidoravitan\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/ljharb\"><img src=\"https://avatars1.githubusercontent.com/u/45469?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jordan Harband</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/pulls?q=is%3Apr+reviewed-by%3Aljharb\" title=\"Reviewed Pull Requests\">👀</a> <a href=\"#ideas-ljharb\" title=\"Ideas, Planning, & Feedback\">🤔</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/marcosvega91\"><img src=\"https://avatars2.githubusercontent.com/u/5365582?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Marco Moretti</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=marcosvega91\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/sanchit121\"><img src=\"https://avatars2.githubusercontent.com/u/30828115?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>sanchit121</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Asanchit121\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=sanchit121\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/solufa\"><img src=\"https://avatars.githubusercontent.com/u/9402912?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Solufa</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Asolufa\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=solufa\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://codepen.io/ariperkkio/\"><img src=\"https://avatars.githubusercontent.com/u/14806298?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ari Perkkiö</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=AriPerkkio\" title=\"Tests\">⚠️</a></td>\n    <td align=\"center\"><a href=\"https://github.com/jhnns\"><img src=\"https://avatars.githubusercontent.com/u/781746?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Johannes Ewald</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=jhnns\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/anpaopao\"><img src=\"https://avatars.githubusercontent.com/u/44686792?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Angus J. Pope</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=anpaopao\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://github.com/leschdom\"><img src=\"https://avatars.githubusercontent.com/u/62334278?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Dominik Lesch</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=leschdom\" title=\"Documentation\">📖</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/ImADrafter\"><img src=\"https://avatars.githubusercontent.com/u/44379989?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Marcos Gómez</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=ImADrafter\" title=\"Documentation\">📖</a></td>\n    <td align=\"center\"><a href=\"https://www.akashshyam.online/\"><img src=\"https://avatars.githubusercontent.com/u/56759828?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Akash Shyam</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Aakashshyamdev\" title=\"Bug reports\">🐛</a></td>\n    <td align=\"center\"><a href=\"https://hen.ne.ke\"><img src=\"https://avatars.githubusercontent.com/u/4312191?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Fabian Meumertzheim</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=fmeum\" title=\"Code\">💻</a> <a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3Afmeum\" title=\"Bug reports\">🐛</a></td>\n    <td align=\"center\"><a href=\"https://github.com/Nokel81\"><img src=\"https://avatars.githubusercontent.com/u/8225332?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sebastian Malton</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/issues?q=author%3ANokel81\" title=\"Bug reports\">🐛</a> <a href=\"https://github.com/testing-library/react-testing-library/commits?author=Nokel81\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/mboettcher\"><img src=\"https://avatars.githubusercontent.com/u/2325337?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Martin Böttcher</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=mboettcher\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"http://tkdodo.eu\"><img src=\"https://avatars.githubusercontent.com/u/1021430?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Dominik Dorfmeister</b></sub></a><br /><a href=\"https://github.com/testing-library/react-testing-library/commits?author=TkDodo\" title=\"Code\">💻</a></td>\n  </tr>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors][all-contributors] specification.\nContributions of any kind welcome!\n\n## LICENSE\n\n[MIT](LICENSE)\n\n<!-- prettier-ignore-start -->\n\n[npm]: https://www.npmjs.com/\n[yarn]: https://classic.yarnpkg.com\n[node]: https://nodejs.org\n[build-badge]: https://img.shields.io/github/workflow/status/testing-library/react-testing-library/validate?logo=github&style=flat-square\n[build]: https://github.com/testing-library/react-testing-library/actions?query=workflow%3Avalidate\n[coverage-badge]: https://img.shields.io/codecov/c/github/testing-library/react-testing-library.svg?style=flat-square\n[coverage]: https://codecov.io/github/testing-library/react-testing-library\n[version-badge]: https://img.shields.io/npm/v/@testing-library/react.svg?style=flat-square\n[package]: https://www.npmjs.com/package/@testing-library/react\n[downloads-badge]: https://img.shields.io/npm/dm/@testing-library/react.svg?style=flat-square\n[npmtrends]: http://www.npmtrends.com/@testing-library/react\n[license-badge]: https://img.shields.io/npm/l/@testing-library/react.svg?style=flat-square\n[license]: https://github.com/testing-library/react-testing-library/blob/main/LICENSE\n[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\n[prs]: http://makeapullrequest.com\n[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square\n[coc]: https://github.com/testing-library/react-testing-library/blob/main/CODE_OF_CONDUCT.md\n[github-watch-badge]: https://img.shields.io/github/watchers/testing-library/react-testing-library.svg?style=social\n[github-watch]: https://github.com/testing-library/react-testing-library/watchers\n[github-star-badge]: https://img.shields.io/github/stars/testing-library/react-testing-library.svg?style=social\n[github-star]: https://github.com/testing-library/react-testing-library/stargazers\n[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20react-testing-library%20by%20%40@TestingLib%20https%3A%2F%2Fgithub.com%2Ftesting-library%2Freact-testing-library%20%F0%9F%91%8D\n[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/testing-library/react-testing-library.svg?style=social\n[emojis]: https://github.com/all-contributors/all-contributors#emoji-key\n[all-contributors]: https://github.com/all-contributors/all-contributors\n[all-contributors-badge]: https://img.shields.io/github/all-contributors/testing-library/react-testing-library?color=orange&style=flat-square\n[guiding-principle]: https://twitter.com/kentcdodds/status/977018512689455106\n[bugs]: https://github.com/testing-library/react-testing-library/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Acreated-desc\n[requests]: https://github.com/testing-library/react-testing-library/issues?q=is%3Aissue+sort%3Areactions-%2B1-desc+label%3Aenhancement+is%3Aopen\n[good-first-issue]: https://github.com/testing-library/react-testing-library/issues?utf8=✓&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3A\"good+first+issue\"+\n[discord-badge]: https://img.shields.io/discord/723559267868737556.svg?color=7389D8&labelColor=6A7EC2&logo=discord&logoColor=ffffff&style=flat-square\n[discord]: https://discord.gg/testing-library\n[stackoverflow]: https://stackoverflow.com/questions/tagged/react-testing-library\n[react-hooks-testing-library]: https://github.com/testing-library/react-hooks-testing-library\n\n<!-- prettier-ignore-end -->\n",
    "licenseText": "The MIT License (MIT)\nCopyright (c) 2017 Kent C. Dodds\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/@testing-library/react/-/react-13.4.0.tgz#6a31e3bf5951615593ad984e96b9e5e2d9380966",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/@testing-library/react/-/react-13.4.0.tgz",
    "hash": "6a31e3bf5951615593ad984e96b9e5e2d9380966",
    "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==",
    "registry": "npm",
    "packageName": "@testing-library/react",
    "cacheIntegrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw== sha1-ajHjv1lRYVWTrZhOlrnl4tk4CWY="
  },
  "registry": "npm",
  "hash": "6a31e3bf5951615593ad984e96b9e5e2d9380966"
}