You want to use jest to write tests that assert various things about the state of a DOM. As part of that goal, you want to avoid all the repetitive patterns that arise in doing so. Checking for an element's attributes, its text content, its css classes, you name it.
The jest-dom
library provides a set of custom jest matchers that you can use
to extend jest. These will make your tests more declarative, clear to read and
to maintain.
- Installation
- Usage
- Custom matchers
- Deprecated matchers
- Inspiration
- Other Solutions
- Guiding Principles
- Contributors
- LICENSE
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 jest-dom
Import jest-dom/extend-expect
once (for instance in your tests setup file)
and you're good to go:
import 'jest-dom/extend-expect'
Alternatively, you can selectively import only the matchers you intend to use,
and extend jest's expect
yourself:
import {toBeInTheDocument, toHaveClass} from 'jest-dom'
expect.extend({toBeInTheDocument, toHaveClass})
Note: when using TypeScript, this way of importing matchers won't provide the necessary type definitions. More on this here.
jest-dom
can work with any library or framework that returns DOM elements from queries. The custom matcher examples below demonstrate using document.querySelector
and dom-testing-library for querying DOM elements.
toBeDisabled()
This allows you to check whether an element is disabled from the user's perspective.
It matches if the element is a form control and the disabled
attribute is
specified on this element or the element is a descendant of a form element
with a disabled
attribute.
According to the specification, the following elements can be actually disabled:
button
, input
, select
, textarea
, optgroup
, option
, fieldset
.
<button data-testid="button" type="submit" disabled>submit</button>
<fieldset disabled><input type="text" data-testid="input" /></fieldset>
<a href="..." disabled>link</a>
expect(document.querySelector('[data-testid="button"]')).toBeDisabled()
expect(document.querySelector('[data-testid="input"]')).toBeDisabled()
expect(document.querySelector('a')).not.toBeDisabled()
expect(getByTestId(container, 'button')).toBeDisabled()
expect(getByTestId(container, 'input')).toBeDisabled()
expect(getByText(container, 'link')).not.toBeDisabled()
toBeEnabled()
This allows you to check whether an element is not disabled from the user's perspective.
It works like not.toBeDisabled()
. Use this matcher to avoid double negation in your tests.
toBeEmpty()
This allows you to assert whether an element has content or not.
<span data-testid="not-empty"><span data-testid="empty"></span></span>
expect(document.querySelector('[data-testid="empty"]').toBeEmpty()
expect(document.querySelector('[data-testid="not-empty"]').not.toBeEmpty()
expect(queryByTestId(container, 'empty')).toBeEmpty()
expect(queryByTestId(container, 'not-empty')).not.toBeEmpty()
toBeInTheDocument()
This allows you to assert whether an element is present in the document or not.
<span data-testid="html-element"><span>Html Element</span></span>
<svg data-testid="svg-element"></svg>
const htmlElement = document.querySelector('[data-testid="html-element"]')
const svgElement = document.querySelector('[data-testid="svg-element"]')
const nonExistantElement = document.querySelector('does-not-exist')
const detachedElement = document.createElement('div')
expect(htmlElement).toBeInTheDocument()
expect(svgElement).toBeInTheDocument()
expect(nonExistantElement).not.toBeInTheDocument()
expect(detachedElement).not.toBeInTheDocument()
expect(
queryByTestId(document.documentElement, 'html-element'),
).toBeInTheDocument()
expect(
queryByTestId(document.documentElement, 'svg-element'),
).toBeInTheDocument()
expect(
queryByTestId(document.documentElement, 'does-not-exist'),
).not.toBeInTheDocument()
Note: This matcher does not find detached elements. The element must be added to the document to be found by toBeInTheDocument. If you desire to search in a detached element please use:
toContainElement
toBeVisible()
This allows you to check if an element is currently visible to the user.
An element is visible if all the following conditions are met:
- it does not have its css property
display
set tonone
- it does not have its css property
visibility
set to eitherhidden
orcollapse
- it does not have its css property
opacity
set to0
- its parent element is also visible (and so on up to the top of the DOM tree)
- it does not have the
hidden
attribute
<div data-testid="zero-opacity" style="opacity: 0">Zero Opacity Example</div>
<div data-testid="visibility-hidden" style="visibility: hidden">
Visibility Hidden Example
</div>
<div data-testid="display-none" style="display: none">Display None Example</div>
<div style="opacity: 0">
<span data-testid="hidden-parent">Hidden Parent Example</span>
</div>
<div data-testid="visible">Visible Example</div>
<div data-testid="hidden-attribute" hidden>Hidden Attribute Example</div>
expect(document.querySelector('[data-testid="zero-opacity"]')).not.toBeVisible()
expect(
document.querySelector('[data-testid="visibility-hidden"]'),
).not.toBeVisible()
expect(document.querySelector('[data-testid="display-none"]')).not.toBeVisible()
expect(
document.querySelector('[data-testid="hidden-parent"]'),
).not.toBeVisible()
expect(document.querySelector('[data-testid="visible"]')).toBeVisible()
expect(
document.querySelector('[data-testid="hidden-attribute"]'),
).not.toBeVisible()
expect(getByText(container, 'Zero Opacity Example')).not.toBeVisible()
expect(getByText(container, 'Visibility Hidden Example')).not.toBeVisible()
expect(getByText(container, 'Display None Example')).not.toBeVisible()
expect(getByText(container, 'Hidden Parent Example')).not.toBeVisible()
expect(getByText(container, 'Visible Example')).toBeVisible()
expect(getByText(container, 'Hidden Attribute Example')).not.toBeVisible()
toContainElement(element: HTMLElement | SVGElement | null)
This allows you to assert whether an element contains another element as a descendant or not.
<span data-testid="ancestor"><span data-testid="descendant"></span></span>
const ancestor = document.querySelector('[data-testid="ancestor"]')
const descendant = document.querySelector('[data-testid="descendant"]')
const nonExistantElement = document.querySelector(
'[data-testid="does-not-exist"]',
)
expect(ancestor).toContainElement(descendant)
expect(descendant).not.toContainElement(ancestor)
expect(ancestor).not.toContainElement(nonExistantElement)
const {queryByTestId} = render(/* Rendered HTML */)
const ancestor = queryByTestId(container, 'ancestor')
const descendant = queryByTestId(container, 'descendant')
const nonExistantElement = queryByTestId(container, 'does-not-exist')
expect(ancestor).toContainElement(descendant)
expect(descendant).not.toContainElement(ancestor)
expect(ancestor).not.toContainElement(nonExistantElement)
toContainHTML(htmlText: string)
Assert whether a string representing a HTML element is contained in another element:
<span data-testid="parent"><span data-testid="child"></span></span>
expect(document.querySelector('[data-testid="parent"]')).toContainHTML(
'<span data-testid="child"></span>',
)
expect(getByTestId(container, 'parent')).toContainHTML(
'<span data-testid="child"></span>',
)
Chances are you probably do not need to use this matcher. We encourage testing from the perspective of how the user perceives the app in a browser. That's why testing against a specific DOM structure is not advised.
It could be useful in situations where the code being tested renders html that was obtained from an external source, and you want to validate that that html code was used as intended.
It should not be used to check DOM structure that you control. Please use
toContainElement
instead.
toHaveAttribute(attr: string, value?: string)
This allows you to check whether the given element has an attribute or not. You can also optionally check that the attribute has a specific expected value.
<button data-testid="ok-button" type="submit" disabled>ok</button>
const button = document.querySelector('[data-testid="ok-button"]')
expect(button).toHaveAttribute('disabled')
expect(button).toHaveAttribute('type', 'submit')
expect(button).not.toHaveAttribute('type', 'button')
const button = getByTestId(container, 'ok-button')
expect(button).toHaveAttribute('disabled')
expect(button).toHaveAttribute('type', 'submit')
expect(button).not.toHaveAttribute('type', 'button')
toHaveClass(...classNames: string[])
This allows you to check whether the given element has certain classes within its
class
attribute.
You must provide at least one class, unless you are asserting that an element does not have any classes.
<button data-testid="delete-button" class="btn extra btn-danger">
Delete item
</button>
<button data-testid="no-classes">No Classes</button>
const deleteButton = document.querySelector('[data-testid="delete-button"]')
const noClasses = document.querySelector('[data-testid="no-classes"]')
expect(deleteButton).toHaveClass('extra')
expect(deleteButton).toHaveClass('btn-danger btn')
expect(deleteButton).toHaveClass('btn-danger', 'btn')
expect(deleteButton).not.toHaveClass('btn-link')
expect(noClasses).not.toHaveClass()
const deleteButton = getByTestId(container, 'delete-button')
const noClasses = getByTestId(container, 'no-classes')
expect(deleteButton).toHaveClass('extra')
expect(deleteButton).toHaveClass('btn-danger btn')
expect(deleteButton).toHaveClass('btn-danger', 'btn')
expect(deleteButton).not.toHaveClass('btn-link')
expect(noClasses).not.toHaveClass()
toHaveFocus()
This allows you to assert whether an element has focus or not.
<div><input type="text" data-testid="element-to-focus" /></div>
const input = document.querySelector(['data-testid="element-to-focus"'])
input.focus()
expect(input).toHaveFocus()
input.blur()
expect(input).not.toHaveFocus()
const input = queryByTestId(container, 'element-to-focus')
fireEvent.focus(input)
expect(input).toHaveFocus()
fireEvent.blur(input)
expect(input).not.toHaveFocus()
toHaveFormValues(expectedValues: {
[name: string]: any
})
This allows you to check if a form or fieldset contains form controls for each given name, and having the specified value.
It is important to stress that this matcher can only be invoked on a form or a fieldset element.
This allows it to take advantage of the .elements property in
form
andfieldset
to reliably fetch all form controls within them.This also avoids the possibility that users provide a container that contains more than one
form
, thereby intermixing form controls that are not related, and could even conflict with one another.
This matcher abstracts away the particularities with which a form control value
is obtained depending on the type of form control. For instance, <input>
elements have a value
attribute, but <select>
elements do not. Here's a list
of all cases covered:
<input type="number">
elements return the value as a number, instead of a string.<input type="checkbox">
elements:- if there's a single one with the given
name
attribute, it is treated as a boolean, returningtrue
if the checkbox is checked,false
if unchecked. - if there's more than one checkbox with the same
name
attribute, they are all treated collectively as a single form control, which returns the value as an array containing all the values of the selected checkboxes in the collection.
- if there's a single one with the given
<input type="radio">
elements are all grouped by thename
attribute, and such a group treated as a single form control. This form control returns the value as a string corresponding to thevalue
attribute of the selected radio button within the group.<input type="text">
elements return the value as a string. This also applies to<input>
elements having any other possibletype
attribute that's not explicitly covered in different rules above (e.g.search
,email
,date
,password
,hidden
, etc.)<select>
elements without themultiple
attribute return the value as a string corresponding to thevalue
attribute of the selectedoption
, orundefined
if there's no selected option.<select multiple>
elements return the value as an array containing all the values of the selected options.<textarea>
elements return their value as a string. The value corresponds to their node content.
The above rules make it easy, for instance, to switch from using a single select control to using a group of radio buttons. Or to switch from a multi select control, to using a group of checkboxes. The resulting set of form values used by this matcher to compare against would be the same.
<form data-testid="login-form">
<input type="text" name="username" value="jane.doe" />
<input type="password" name="password" value="12345678" />
<input type="checkbox" name="rememberMe" checked />
<button type="submit">Sign in</button>
</form>
const form = document.querySelector('[data-testid="login-form"]')
expect(form).toHaveFormValues({
username: 'jane.doe',
rememberMe: true,
})
toHaveStyle(css: string)
This allows you to check if a certain element has some specific css properties with specific values applied. It matches only if the element has all the expected properties applied, not just some of them.
<button data-testid="delete-button" style="display: none; color: red">
Delete item
</button>
const button = document.querySelector(['data-testid="delete-button"')
expect(button).toHaveStyle('display: none')
expect(button).toHaveStyle(`
color: red;
display: none;
`)
expect(button).not.toHaveStyle(`
color: blue;
display: none;
`)
const button = getByTestId(container, 'delete-button')
expect(button).toHaveStyle('display: none')
expect(button).toHaveStyle(`
color: red;
display: none;
`)
expect(button).not.toHaveStyle(`
color: blue;
display: none;
`)
This also works with rules that are applied to the element via a class name for which some rules are defined in a stylesheet currently active in the document. The usual rules of css precedence apply.
toHaveTextContent(text: string | RegExp, options?: {normalizeWhitespace: boolean})
This allows you to check whether the given element has a text content or not.
When a string
argument is passed through, it will perform a partial case-sensitive match to the element content.
To perform a case-insensitive match, you can use a RegExp
with the /i
modifier.
If you want to match the whole content, you can use a RegExp
to do it.
<span data-testid="text-content">Text Content</span>
const element = document.querySelector('[data-testid="text-content"]')
expect(element).toHaveTextContent('Content')
expect(element).toHaveTextContent(/^Text Content$/) // to match the whole content
expect(element).toHaveTextContent(/content$/i) // to use case-insentive match
expect(element).not.toHaveTextContent('content')
const element = getByTestId(container, 'text-content')
expect(element).toHaveTextContent('Content')
expect(element).toHaveTextContent(/^Text Content$/) // to match the whole content
expect(element).toHaveTextContent(/content$/i) // to use case-insentive match
expect(element).not.toHaveTextContent('content')
toBeInTheDOM()
This allows you to check whether a value is a DOM element, or not.
Contrary to what its name implies, this matcher only checks that you passed to it a valid DOM element. It does not have a clear definition of that "the DOM" is. Therefore, it does not check wether that element is contained anywhere.
This is the main reason why this matcher is deprecated, and will be removed in the next major release. You can follow the discussion around this decision in more detail here.
As an alternative, you can use toBeInTheDocument
or toContainElement
. Or if you just want to check if a
value is indeed an HTMLElement
you can always use some of
jest's built-in matchers:
expect(document.querySelector('.ok-button')).toBeInstanceOf(HTMLElement)
expect(document.querySelector('.cancel-button')).toBeTruthy()
Note: The differences between
toBeInTheDOM
andtoBeInTheDocument
are significant. Replacing all uses oftoBeInTheDOM
withtoBeInTheDocument
will likely cause unintended consequences in your tests. Please make sure when replacingtoBeInTheDOM
to read through the documentation of the proposed alternatives to see which use case works better for your needs.
This whole library was extracted out of Kent C. Dodds' dom-testing-library, which was in turn extracted out of react-testing-library.
The intention is to make this available to be used independently of these other libraries, and also to make it more clear that these other libraries are independent from jest, and can be used with other tests runners as well.
I'm not aware of any, if you are please make a pull request and add it here!
The more your tests resemble the way your software is used, the more confidence they can give you.
This library follows the same guiding principles as its mother library dom-testing-library. Go check them out for more details.
Additionally, with respect to custom DOM matchers, this library aims to maintain a minimal but useful set of them, while avoiding bloating itself with merely convenient ones that can be easily achieved with other APIs. In general, the overall criteria for what is considered a useful custom matcher to add to this library, is that doing the equivalent assertion on our own makes the test code more verbose, less clear in its intent, and/or harder to read.
Thanks goes to these people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
MIT