Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More โ†’
Socket
Sign inDemoInstall
Socket

react-testing-library

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-testing-library

Simple and complete React DOM testing utilities that encourage good testing practices.

  • 7.0.0
  • npm
  • Socket score

Version published
Weekly downloads
15K
decreased by-62.44%
Maintainers
1
Weekly downloads
ย 
Created
Source

react-testing-library

goat

Simple and complete React DOM testing utilities that encourage good testing practices.


Read The Docs | Edit the docs



Build Status Code Coverage version downloads MIT License

All Contributors PRs Welcome Code of Conduct Join the community on Spectrum

Watch on GitHub Star on GitHub Tweet

Table of Contents

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.

This 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.

Example

// __tests__/fetch.js
import React from 'react'
import {render, fireEvent, cleanup, waitForElement} from 'react-testing-library'
// this adds custom jest matchers from jest-dom
import 'jest-dom/extend-expect'

// the mock lives in a __mocks__ directory
// to know more about manual mocks, access: https://jestjs.io/docs/en/manual-mocks
import axiosMock from 'axios'
import Fetch from '../fetch' // see the tests for a full implementation

// automatically unmount and cleanup DOM after the test is finished.
afterEach(cleanup)

test('Fetch makes an API call and displays the greeting when load-greeting is clicked', async () => {
  // Arrange
  axiosMock.get.mockResolvedValueOnce({data: {greeting: 'hello there'}})
  const url = '/greeting'
  const {getByText, getByTestId, container, asFragment} = render(
    <Fetch url={url} />,
  )

  // Act
  fireEvent.click(getByText(/load greeting/i))

  // Let's wait until our mocked `get` request promise resolves and
  // the component calls setState and re-renders.
  // getByTestId throws an error if it cannot find an element with the given ID
  // and waitForElement will wait until the callback doesn't throw an error
  const greetingTextNode = await waitForElement(() =>
    getByTestId('greeting-text'),
  )

  // Assert
  expect(axiosMock.get).toHaveBeenCalledTimes(1)
  expect(axiosMock.get).toHaveBeenCalledWith(url)
  expect(getByTestId('greeting-text')).toHaveTextContent('hello there')
  expect(getByTestId('ok-button')).toHaveAttribute('disabled')
  // snapshots work great with regular DOM nodes!
  expect(container.firstChild).toMatchSnapshot()
  // you can also get a `DocumentFragment`, which is useful if you want to compare nodes across renders
  expect(asFragment()).toMatchSnapshot()
})

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies:

npm install --save-dev react-testing-library

This library has peerDependencies listings for react and react-dom.

You may also be interested in installing jest-dom so you can use the custom jest matchers.

Docs

Examples

We're in the process of moving examples to the docs site

You'll find runnable examples of testing with different libraries in the examples directory. Some included are:

You can also find react-testing-library examples at react-testing-examples.com.

Hooks

If you are interested in testing a custom hook, check out react-hooks-testing-library.

Other Solutions

In preparing this project, I tweeted about it and Sune Simonsen took up the challenge. We had different ideas of what to include in the library, so I decided to create this one instead.

Guiding Principles

The more your tests resemble the way your software is used, the more confidence they can give you.

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.

At the end of the day, what we want is for this library to be pretty light-weight, simple, and understandable.

Contributors

Thanks goes to these people (emoji key):

Kent C. Dodds
Kent C. Dodds

๐Ÿ’ป ๐Ÿ“– ๐Ÿš‡ โš ๏ธ
Ryan Castner
Ryan Castner

๐Ÿ“–
Daniel Sandiego
Daniel Sandiego

๐Ÿ’ป
Paweล‚ Mikoล‚ajczyk
Paweล‚ Mikoล‚ajczyk

๐Ÿ’ป
Alejandro ร‘รกรฑez Ortiz
Alejandro ร‘รกรฑez Ortiz

๐Ÿ“–
Matt Parrish
Matt Parrish

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– โš ๏ธ
Justin Hall
Justin Hall

๐Ÿ“ฆ
Anto Aravinth
Anto Aravinth

๐Ÿ’ป โš ๏ธ ๐Ÿ“–
Jonah Moses
Jonah Moses

๐Ÿ“–
ลukasz Gandecki
ลukasz Gandecki

๐Ÿ’ป โš ๏ธ ๐Ÿ“–
Ivan Babak
Ivan Babak

๐Ÿ› ๐Ÿค”
Jesse Day
Jesse Day

๐Ÿ’ป
Ernesto Garcรญa
Ernesto Garcรญa

๐Ÿ’ฌ ๐Ÿ’ป ๐Ÿ“–
Josef Maxx Blake
Josef Maxx Blake

๐Ÿ’ป ๐Ÿ“– โš ๏ธ
Michal Baranowski
Michal Baranowski

๐Ÿ“ โœ…
Arthur Puthin
Arthur Puthin

๐Ÿ“–
Thomas Chia
Thomas Chia

๐Ÿ’ป ๐Ÿ“–
Thiago Galvani
Thiago Galvani

๐Ÿ“–
Christian
Christian

โš ๏ธ
Alex Krolick
Alex Krolick

๐Ÿ’ฌ ๐Ÿ“– ๐Ÿ’ก ๐Ÿค”
Johann Hubert Sonntagbauer
Johann Hubert Sonntagbauer

๐Ÿ’ป ๐Ÿ“– โš ๏ธ
Maddi Joyce
Maddi Joyce

๐Ÿ’ป
Ryan Vice
Ryan Vice

๐Ÿ“–
Ian Wilson
Ian Wilson

๐Ÿ“ โœ…
Daniel
Daniel

๐Ÿ› ๐Ÿ’ป
Giorgio Polvara
Giorgio Polvara

๐Ÿ› ๐Ÿค”
John Gozde
John Gozde

๐Ÿ’ป
Sam Horton
Sam Horton

๐Ÿ“– ๐Ÿ’ก ๐Ÿค”
Richard Kotze (mobile)
Richard Kotze (mobile)

๐Ÿ“–
Brahian E. Soto Mercedes
Brahian E. Soto Mercedes

๐Ÿ“–
Benoit de La Forest
Benoit de La Forest

๐Ÿ“–
Salah
Salah

๐Ÿ’ป โš ๏ธ
Adam Gordon
Adam Gordon

๐Ÿ› ๐Ÿ’ป
Matija Marohniฤ‡
Matija Marohniฤ‡

๐Ÿ“–
Justice Mba
Justice Mba

๐Ÿ“–
Mark Pollmann
Mark Pollmann

๐Ÿ“–
Ehtesham Kafeel
Ehtesham Kafeel

๐Ÿ’ป ๐Ÿ“–
Julio Pavรณn
Julio Pavรณn

๐Ÿ’ป
Duncan L
Duncan L

๐Ÿ“– ๐Ÿ’ก
Tiago Almeida
Tiago Almeida

๐Ÿ“–
Robert Smith
Robert Smith

๐Ÿ›
Zach Green
Zach Green

๐Ÿ“–
dadamssg
dadamssg

๐Ÿ“–
Yazan Aabed
Yazan Aabed

๐Ÿ“
Tim
Tim

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– โš ๏ธ
Divyanshu Maithani
Divyanshu Maithani

โœ… ๐Ÿ“น
Deepak Grover
Deepak Grover

โœ… ๐Ÿ“น
Eyal Cohen
Eyal Cohen

๐Ÿ“–
Peter Makowski
Peter Makowski

๐Ÿ“–
Michiel Nuyts
Michiel Nuyts

๐Ÿ“–
Joe Ng'ethe
Joe Ng'ethe

๐Ÿ’ป ๐Ÿ“–
Kate
Kate

๐Ÿ“–
Sean
Sean

๐Ÿ“–
James Long
James Long

๐Ÿค” ๐Ÿ“ฆ
Herb Hagely
Herb Hagely

๐Ÿ’ก
Alex Wendte
Alex Wendte

๐Ÿ’ก
Monica Powell
Monica Powell

๐Ÿ“–
Vitaly Sivkov
Vitaly Sivkov

๐Ÿ’ป
Weyert de Boer
Weyert de Boer

๐Ÿค” ๐Ÿ‘€
EstebanMarin
EstebanMarin

๐Ÿ“–
Victor Martins
Victor Martins

๐Ÿ“–
Royston Shufflebotham
Royston Shufflebotham

๐Ÿ› ๐Ÿ“– ๐Ÿ’ก
chrbala
chrbala

๐Ÿ’ป
Donavon West
Donavon West

๐Ÿ’ป ๐Ÿ“– ๐Ÿค” โš ๏ธ
Richard Maisano
Richard Maisano

๐Ÿ’ป
Marco Biedermann
Marco Biedermann

๐Ÿ’ป ๐Ÿšง โš ๏ธ
Alex Zherdev
Alex Zherdev

๐Ÿ› ๐Ÿ’ป
Andrรฉ Matulionis dos Santos
Andrรฉ Matulionis dos Santos

๐Ÿ’ป ๐Ÿ’ก โš ๏ธ
Daniel K.
Daniel K.

๐Ÿ› ๐Ÿ’ป ๐Ÿค” โš ๏ธ
mohamedmagdy17593
mohamedmagdy17593

๐Ÿ’ป
Loren โ˜บ๏ธ
Loren โ˜บ๏ธ

๐Ÿ“–
MarkFalconbridge
MarkFalconbridge

๐Ÿ› ๐Ÿ’ป
Vinicius
Vinicius

๐Ÿ“– ๐Ÿ’ก
Peter Schyma
Peter Schyma

๐Ÿ’ป
Ian Schmitz
Ian Schmitz

๐Ÿ“–
Joel Marcotte
Joel Marcotte

๐Ÿ› โš ๏ธ ๐Ÿ’ป
Alejandro Dustet
Alejandro Dustet

๐Ÿ›
Brandon Carroll
Brandon Carroll

๐Ÿ“–
Lucas Machado
Lucas Machado

๐Ÿ“–

This project follows the all-contributors specification. Contributions of any kind welcome!

Docs

Read The Docs | Edit the docs

Issues

Looking to contribute? Look for the Good First Issue label.

๐Ÿ› Bugs

Please file an issue for bugs, missing documentation, or unexpected behavior.

See 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

โ“ Questions

For questions related to using the library, please visit a support community instead of filing an issue on GitHub.

LICENSE

MIT

Keywords

FAQs

Package last updated on 25 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc