Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kentcdodds/react-testing-library
π Simple and complete React DOM testing utilities that encourage good testing practices.
https://github.com/kentcdodds/react-testing-library
javascript reactjs testing
Last synced: 3 months ago
JSON representation
π Simple and complete React DOM testing utilities that encourage good testing practices.
- Host: GitHub
- URL: https://github.com/kentcdodds/react-testing-library
- Owner: testing-library
- License: mit
- Created: 2018-03-19T13:39:49.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-03T13:55:26.000Z (5 months ago)
- Last Synced: 2024-06-17T05:28:31.094Z (5 months ago)
- Topics: javascript, reactjs, testing
- Language: JavaScript
- Homepage: https://testing-library.com/react
- Size: 1.56 MB
- Stars: 18,778
- Watchers: 141
- Forks: 1,090
- Open Issues: 43
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-fe - **react-testing-library** - kentcdodds εΊεγ (ζ΅θ― / macros)
- awesome-javascript - react testing library - Simple and complete React DOM testing utilities that encourage good testing practices. ` π 15 days ago` (Testing Frameworks [π](#readme))
- awesome-repositories - kentcdodds/react-testing-library
- awesome-javascript - react testing library - Simple and complete React DOM testing utilities that encourage good testing practices. (Testing Frameworks / Assertion)
- awesome-javascript - react-testing-library - Simple and complete React DOM testing utilities that encourage good testing practices. - β 3849 (Testing Frameworks)
- awesome-f2e-libs - **react-testing-library** - kentcdodds εΊεγ (ζ΅θ― / macros)
README
React Testing Library
Simple and complete React DOM testing utilities that encourage good testing
practices.
[**Read The Docs**](https://testing-library.com/react) |
[Edit the docs](https://github.com/testing-library/testing-library-docs)
[![Build Status][build-badge]][build]
[![Code Coverage][coverage-badge]][coverage]
[![version][version-badge]][package]
[![downloads][downloads-badge]][npmtrends]
[![MIT License][license-badge]][license]
[![All Contributors][all-contributors-badge]](#contributors)
[![PRs Welcome][prs-badge]][prs]
[![Code of Conduct][coc-badge]][coc]
[![Discord][discord-badge]][discord][![Watch on GitHub][github-watch-badge]][github-watch]
[![Star on GitHub][github-star-badge]][github-star]
[![Tweet][twitter-badge]][twitter]## Table of Contents
- [The problem](#the-problem)
- [The solution](#the-solution)
- [Installation](#installation)
- [Suppressing unnecessary warnings on React DOM 16.8](#suppressing-unnecessary-warnings-on-react-dom-168)
- [Examples](#examples)
- [Basic Example](#basic-example)
- [Complex Example](#complex-example)
- [More Examples](#more-examples)
- [Hooks](#hooks)
- [Guiding Principles](#guiding-principles)
- [Docs](#docs)
- [Issues](#issues)
- [π Bugs](#-bugs)
- [π‘ Feature Requests](#-feature-requests)
- [β Questions](#-questions)
- [Contributors](#contributors)
- [LICENSE](#license)## The problem
You want to write maintainable tests for your React components. As a part of
this goal, you want your tests to avoid including implementation details of your
components and rather focus on making your tests give you the confidence for
which they are intended. As part of this, you want your testbase to be
maintainable in the long run so refactors of your components (changes to
implementation but not functionality) don't break your tests and slow you and
your team down.## The solution
The `React Testing Library` is a very lightweight solution for testing React
components. It provides light utility functions on top of `react-dom` and
`react-dom/test-utils`, in a way that encourages better testing practices. Its
primary guiding principle is:> [The more your tests resemble the way your software is used, the more
> confidence they can give you.][guiding-principle]## Installation
This module is distributed via [npm][npm] which is bundled with [node][node] and
should be installed as one of your project's `devDependencies`.
Starting from RTL version 16, you'll also need to install
`@testing-library/dom`:```
npm install --save-dev @testing-library/react @testing-library/dom
```or
for installation via [yarn][yarn]
```
yarn add --dev @testing-library/react @testing-library/dom
```This library has `peerDependencies` listings for `react`, `react-dom` and
starting from RTL version 16 also `@testing-library/dom`._React Testing Library versions 13+ require React v18. If your project uses an
older version of React, be sure to install version 12:_```
npm install --save-dev @testing-library/react@12yarn add --dev @testing-library/react@12
```You may also be interested in installing `@testing-library/jest-dom` so you can
use [the custom jest matchers](https://github.com/testing-library/jest-dom).> [**Docs**](https://testing-library.com/react)
### Suppressing unnecessary warnings on React DOM 16.8
There is a known compatibility issue with React DOM 16.8 where you will see the
following warning:```
Warning: An update to ComponentName inside a test was not wrapped in act(...).
```If you cannot upgrade to React DOM 16.9, you may suppress the warnings by adding
the following snippet to your test configuration
([learn more](https://github.com/testing-library/react-testing-library/issues/281)):```js
// this is just a little hack to silence a warning that we'll get until we
// upgrade to 16.9. See also: https://github.com/facebook/react/pull/14853
const originalError = console.error
beforeAll(() => {
console.error = (...args) => {
if (/Warning.*not wrapped in act/.test(args[0])) {
return
}
originalError.call(console, ...args)
}
})afterAll(() => {
console.error = originalError
})
```## Examples
### Basic Example
```jsx
// hidden-message.js
import * as React from 'react'// NOTE: React Testing Library works well with React Hooks and classes.
// Your tests will be the same regardless of how you write your components.
function HiddenMessage({children}) {
const [showMessage, setShowMessage] = React.useState(false)
return (
Show Message
setShowMessage(e.target.checked)}
checked={showMessage}
/>
{showMessage ? children : null}
)
}export default HiddenMessage
``````jsx
// __tests__/hidden-message.js
// these imports are something you'd normally configure Jest to import for you
// automatically. Learn more in the setup docs: https://testing-library.com/docs/react-testing-library/setup#cleanup
import '@testing-library/jest-dom'
// NOTE: jest-dom adds handy assertions to Jest and is recommended, but not requiredimport * as React from 'react'
import {render, fireEvent, screen} from '@testing-library/react'
import HiddenMessage from '../hidden-message'test('shows the children when the checkbox is checked', () => {
const testMessage = 'Test Message'
render({testMessage})// query* functions will return the element or null if it cannot be found
// get* functions will return the element or throw an error if it cannot be found
expect(screen.queryByText(testMessage)).toBeNull()// the queries can accept a regex to make your selectors more resilient to content tweaks and changes.
fireEvent.click(screen.getByLabelText(/show/i))// .toBeInTheDocument() is an assertion that comes from jest-dom
// otherwise you could use .toBeDefined()
expect(screen.getByText(testMessage)).toBeInTheDocument()
})
```### Complex Example
```jsx
// login.js
import * as React from 'react'function Login() {
const [state, setState] = React.useReducer((s, a) => ({...s, ...a}), {
resolved: false,
loading: false,
error: null,
})function handleSubmit(event) {
event.preventDefault()
const {usernameInput, passwordInput} = event.target.elementssetState({loading: true, resolved: false, error: null})
window
.fetch('/api/login', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
username: usernameInput.value,
password: passwordInput.value,
}),
})
.then(r => r.json().then(data => (r.ok ? data : Promise.reject(data))))
.then(
user => {
setState({loading: false, resolved: true, error: null})
window.localStorage.setItem('token', user.token)
},
error => {
setState({loading: false, resolved: false, error: error.message})
},
)
}return (
Username
Password
Submit{state.loading ? '...' : null}
{state.error ?{state.error}: null}
{state.resolved ? (
Congrats! You're signed in!
) : null}
)
}export default Login
``````jsx
// __tests__/login.js
// again, these first two imports are something you'd normally handle in
// your testing framework configuration rather than importing them in every file.
import '@testing-library/jest-dom'
import * as React from 'react'
// import API mocking utilities from Mock Service Worker.
import {rest} from 'msw'
import {setupServer} from 'msw/node'
// import testing utilities
import {render, fireEvent, screen} from '@testing-library/react'
import Login from '../login'const fakeUserResponse = {token: 'fake_user_token'}
const server = setupServer(
rest.post('/api/login', (req, res, ctx) => {
return res(ctx.json(fakeUserResponse))
}),
)beforeAll(() => server.listen())
afterEach(() => {
server.resetHandlers()
window.localStorage.removeItem('token')
})
afterAll(() => server.close())test('allows the user to login successfully', async () => {
render()// fill out the form
fireEvent.change(screen.getByLabelText(/username/i), {
target: {value: 'chuck'},
})
fireEvent.change(screen.getByLabelText(/password/i), {
target: {value: 'norris'},
})fireEvent.click(screen.getByText(/submit/i))
// just like a manual tester, we'll instruct our test to wait for the alert
// to show up before continuing with our assertions.
const alert = await screen.findByRole('alert')// .toHaveTextContent() comes from jest-dom's assertions
// otherwise you could use expect(alert.textContent).toMatch(/congrats/i)
// but jest-dom will give you better error messages which is why it's recommended
expect(alert).toHaveTextContent(/congrats/i)
expect(window.localStorage.getItem('token')).toEqual(fakeUserResponse.token)
})test('handles server exceptions', async () => {
// mock the server error response for this test suite only.
server.use(
rest.post('/api/login', (req, res, ctx) => {
return res(ctx.status(500), ctx.json({message: 'Internal server error'}))
}),
)render()
// fill out the form
fireEvent.change(screen.getByLabelText(/username/i), {
target: {value: 'chuck'},
})
fireEvent.change(screen.getByLabelText(/password/i), {
target: {value: 'norris'},
})fireEvent.click(screen.getByText(/submit/i))
// wait for the error message
const alert = await screen.findByRole('alert')expect(alert).toHaveTextContent(/internal server error/i)
expect(window.localStorage.getItem('token')).toBeNull()
})
```> We recommend using [Mock Service Worker](https://github.com/mswjs/msw) library
> to declaratively mock API communication in your tests instead of stubbing
> `window.fetch`, or relying on third-party adapters.### More Examples
> We're in the process of moving examples to the
> [docs site](https://testing-library.com/docs/example-codesandbox)You'll find runnable examples of testing with different libraries in
[the `react-testing-library-examples` codesandbox](https://codesandbox.io/s/github/kentcdodds/react-testing-library-examples).
Some included are:- [`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)
- [`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)
- [`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)## Hooks
If you are interested in testing a custom hook, check out [React Hooks Testing
Library][react-hooks-testing-library].> NOTE: it is not recommended to test single-use custom hooks in isolation from
> the components where it's being used. It's better to test the component that's
> using the hook rather than the hook itself. The `React Hooks Testing Library`
> is intended to be used for reusable hooks/libraries.## Guiding Principles
> [The more your tests resemble the way your software is used, the more
> confidence they can give you.][guiding-principle]We try to only expose methods and utilities that encourage you to write tests
that closely resemble how your React components are used.Utilities are included in this project based on the following guiding
principles:1. If it relates to rendering components, it deals with DOM nodes rather than
component instances, nor should it encourage dealing with component
instances.
2. It should be generally useful for testing individual React components or
full React applications. While this library is focused on `react-dom`,
utilities could be included even if they don't directly relate to
`react-dom`.
3. Utility implementations and APIs should be simple and flexible.Most importantly, we want React Testing Library to be pretty light-weight,
simple, and easy to understand.## Docs
[**Read The Docs**](https://testing-library.com/react) |
[Edit the docs](https://github.com/testing-library/testing-library-docs)## Issues
Looking to contribute? Look for the [Good First Issue][good-first-issue] label.
### π Bugs
Please file an issue for bugs, missing documentation, or unexpected behavior.
[**See Bugs**][bugs]
### π‘ Feature Requests
Please file an issue to suggest new features. Vote on feature requests by adding
a π. This helps maintainers prioritize what to work on.[**See Feature Requests**][requests]
### β Questions
For questions related to using the library, please visit a support community
instead of filing an issue on GitHub.- [Discord][discord]
- [Stack Overflow][stackoverflow]## Contributors
Thanks goes to these people ([emoji key][emojis]):
Kent C. Dodds
π» π π β οΈ
Ryan Castner
π
Daniel Sandiego
π»
PaweΕ MikoΕajczyk
π»
Alejandro ΓÑñez Ortiz
π
Matt Parrish
π π» π β οΈ
Justin Hall
π¦
Anto Aravinth
π» β οΈ π
Jonah Moses
π
Εukasz Gandecki
π» β οΈ π
Ivan Babak
π π€
Jesse Day
π»
Ernesto GarcΓa
π¬ π» π
Josef Maxx Blake
π» π β οΈ
Michal Baranowski
π β
Arthur Puthin
π
Thomas Chia
π» π
Thiago Galvani
π
Christian
β οΈ
Alex Krolick
π¬ π π‘ π€
Johann Hubert Sonntagbauer
π» π β οΈ
Maddi Joyce
π»
Ryan Vice
π
Ian Wilson
π β
Daniel
π π»
Giorgio Polvara
π π€
John Gozde
π»
Sam Horton
π π‘ π€
Richard Kotze (mobile)
π
Brahian E. Soto Mercedes
π
Benoit de La Forest
π
Salah
π» β οΈ
Adam Gordon
π π»
Matija MarohniΔ
π
Justice Mba
π
Mark Pollmann
π
Ehtesham Kafeel
π» π
Julio PavΓ³n
π»
Duncan L
π π‘
Tiago Almeida
π
Robert Smith
π
Zach Green
π
dadamssg
π
Yazan Aabed
π
Tim
π π» π β οΈ
Divyanshu Maithani
β πΉ
Deepak Grover
β πΉ
Eyal Cohen
π
Peter Makowski
π
Michiel Nuyts
π
Joe Ng'ethe
π» π
Kate
π
Sean
π
James Long
π€ π¦
Herb Hagely
π‘
Alex Wendte
π‘
Monica Powell
π
Vitaly Sivkov
π»
Weyert de Boer
π€ π π¨
EstebanMarin
π
Victor Martins
π
Royston Shufflebotham
π π π‘
chrbala
π»
Donavon West
π» π π€ β οΈ
Richard Maisano
π»
Marco Biedermann
π» π§ β οΈ
Alex Zherdev
π π»
AndrΓ© Matulionis dos Santos
π» π‘ β οΈ
Daniel K.
π π» π€ β οΈ π
mohamedmagdy17593
π»
Loren βΊοΈ
π
MarkFalconbridge
π π»
Vinicius
π π‘
Peter Schyma
π»
Ian Schmitz
π
Joel Marcotte
π β οΈ π»
Alejandro Dustet
π
Brandon Carroll
π
Lucas Machado
π
Pascal Duez
π¦
Minh Nguyen
π»
LiaoJimmy
π
Sunil Pai
π» β οΈ
Dan Abramov
π
Christian Murphy
π
Ivakhnenko Dmitry
π»
James George
π
JoΓ£o Fernandes
π
Alejandro Perea
π
Nick McCurdy
π π¬ π
Sebastian Silbermann
π
AdriΓ Fontcuberta
π π
John Reilly
π
MichaΓ«l De Boey
π π»
Tim Yates
π
Brian Donovan
π»
Noam Gabriel Jacobson
π
Ronald van der Kooij
β οΈ π»
Aayush Rajvanshi
π
Ely Alamillo
π» β οΈ
Daniel Afonso
π» β οΈ
Laurens Bosscher
π»
Sakito Mukai
π
TΓΌrker Teke
π
Zach Brogan
π» β οΈ
Ryota Murakami
π
Michael Hottman
π€
Steven Fitzpatrick
π
Juan Je GarcΓa
π
Championrunner
π
Sam Tsai
π» β οΈ π
Christian Rackerseder
π»
Andrei Picus
π π
Artem Zakharchenko
π
Michael
π
Braden Lee
π
Kamran Ayub
π» β οΈ
Matan Borenkraout
π»
Ryan Bigg
π§
Anton Halim
π
Artem Malko
π»
Gerrit Alex
π»
Karthick Raja
π»
Abdelrahman Ashraf
π»
Lidor Avitan
π
Jordan Harband
π π€
Marco Moretti
π»
sanchit121
π π»
Solufa
π π»
Ari PerkkiΓΆ
β οΈ
Johannes Ewald
π»
Angus J. Pope
π
Dominik Lesch
π
Marcos GΓ³mez
π
Akash Shyam
π
Fabian Meumertzheim
π» π
Sebastian Malton
π π»
Martin BΓΆttcher
π»
Dominik Dorfmeister
π»
Stephen Sauceda
π
Colin Diesh
π
Yusuke Iinuma
π»
Jeff Way
π»
This project follows the [all-contributors][all-contributors] specification.
Contributions of any kind welcome!## LICENSE
[MIT](LICENSE)
[npm]: https://www.npmjs.com/
[yarn]: https://classic.yarnpkg.com
[node]: https://nodejs.org
[build-badge]: https://img.shields.io/github/actions/workflow/status/testing-library/react-testing-library/validate.yml?branch=main&logo=github
[build]: https://github.com/testing-library/react-testing-library/actions?query=workflow%3Avalidate
[coverage-badge]: https://img.shields.io/codecov/c/github/testing-library/react-testing-library.svg?style=flat-square
[coverage]: https://codecov.io/github/testing-library/react-testing-library
[version-badge]: https://img.shields.io/npm/v/@testing-library/react.svg?style=flat-square
[package]: https://www.npmjs.com/package/@testing-library/react
[downloads-badge]: https://img.shields.io/npm/dm/@testing-library/react.svg?style=flat-square
[npmtrends]: http://www.npmtrends.com/@testing-library/react
[license-badge]: https://img.shields.io/npm/l/@testing-library/react.svg?style=flat-square
[license]: https://github.com/testing-library/react-testing-library/blob/main/LICENSE
[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
[prs]: http://makeapullrequest.com
[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square
[coc]: https://github.com/testing-library/react-testing-library/blob/main/CODE_OF_CONDUCT.md
[github-watch-badge]: https://img.shields.io/github/watchers/testing-library/react-testing-library.svg?style=social
[github-watch]: https://github.com/testing-library/react-testing-library/watchers
[github-star-badge]: https://img.shields.io/github/stars/testing-library/react-testing-library.svg?style=social
[github-star]: https://github.com/testing-library/react-testing-library/stargazers
[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
[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/testing-library/react-testing-library.svg?style=social
[emojis]: https://github.com/all-contributors/all-contributors#emoji-key
[all-contributors]: https://github.com/all-contributors/all-contributors
[all-contributors-badge]: https://img.shields.io/github/all-contributors/testing-library/react-testing-library?color=orange&style=flat-square
[guiding-principle]: https://twitter.com/kentcdodds/status/977018512689455106
[bugs]: https://github.com/testing-library/react-testing-library/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Acreated-desc
[requests]: https://github.com/testing-library/react-testing-library/issues?q=is%3Aissue+sort%3Areactions-%2B1-desc+label%3Aenhancement+is%3Aopen
[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"+
[discord-badge]: https://img.shields.io/discord/723559267868737556.svg?color=7389D8&labelColor=6A7EC2&logo=discord&logoColor=ffffff&style=flat-square
[discord]: https://discord.gg/testing-library
[stackoverflow]: https://stackoverflow.com/questions/tagged/react-testing-library
[react-hooks-testing-library]: https://github.com/testing-library/react-hooks-testing-library