Socket
Socket
Sign inDemoInstall

@testing-library/react

Package Overview
Dependencies
80
Maintainers
13
Versions
113
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @testing-library/react

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


Version published
Weekly downloads
9.5M
decreased by-2.1%
Maintainers
13
Install size
8.51 MB
Created
Weekly downloads
ย 

Package description

What is @testing-library/react?

The @testing-library/react package is a set of utilities that allow you to work with React components in a way that simulates user interaction as closely as possible. 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 aim is to test the component the way users would. Therefore, it avoids including details about the component's internal structure, such as state or lifecycle methods, and instead focuses on making tests easy to write and understand.

What are @testing-library/react's main functionalities?

Rendering Components

This feature allows you to render a React component into a container which is appended to document.body. It provides utility functions to interact with the rendered component.

import { render } from '@testing-library/react';
const { getByText } = render(<button>Click me</button>);
expect(getByText(/click me/i)).toBeInTheDocument();

Querying Elements

Provides various methods to query elements from the rendered component, such as getByText, getByRole, etc., making it easier to assert their presence and properties.

import { screen } from '@testing-library/react';
render(<div>Hello World</div>);
expect(screen.getByText('Hello World')).toBeInTheDocument();

User Events Simulation

Enables the simulation of user actions like clicking, typing, etc., on the rendered components. This is crucial for testing interactive elements.

import { render, fireEvent } from '@testing-library/react';
const { getByLabelText, getByText } = render(<label htmlFor='checkbox'>Check this box</label>
<input id='checkbox' type='checkbox' />);
fireEvent.click(getByText('Check this box'));
expect(getByLabelText('Check this box')).toBeChecked();

Other packages similar to @testing-library/react

Readme

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 Discord

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.

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.

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 @testing-library/react

or

for installation via yarn

yarn add --dev @testing-library/react

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

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

Docs

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):

// 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

// 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 (
    <div>
      <label htmlFor="toggle">Show Message</label>
      <input
        id="toggle"
        type="checkbox"
        onChange={e => setShowMessage(e.target.checked)}
        checked={showMessage}
      />
      {showMessage ? children : null}
    </div>
  )
}

export default HiddenMessage
// __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 required

import * 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(<HiddenMessage>{testMessage}</HiddenMessage>)

  // 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

// 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.elements

    setState({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 (
    <div>
      <form onSubmit={handleSubmit}>
        <div>
          <label htmlFor="usernameInput">Username</label>
          <input id="usernameInput" />
        </div>
        <div>
          <label htmlFor="passwordInput">Password</label>
          <input id="passwordInput" type="password" />
        </div>
        <button type="submit">Submit{state.loading ? '...' : null}</button>
      </form>
      {state.error ? <div role="alert">{state.error}</div> : null}
      {state.resolved ? (
        <div role="alert">Congrats! You're signed in!</div>
      ) : null}
    </div>
  )
}

export default Login
// __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(<Login />)

  // 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(<Login />)

  // 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 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

You'll find runnable examples of testing with different libraries in the react-testing-library-examples codesandbox. 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.

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.

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

Contributors

Thanks goes to these people (emoji key):


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

๐Ÿ’ป

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

LICENSE

MIT

Keywords

FAQs

Last updated on 04 Sep 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc