@testing-library/angular
TypeScript icon, indicating that this package has built-in type declarations

17.3.7 • Public • Published

@testing-library/angular

Octopus with the Angular logo

Simple and complete Angular testing utilities that encourage good testing practices.


Read The Docs | Edit the docs



Build Status version downloads MIT License

All Contributors PRs Welcome Code of Conduct Discord

Watch on GitHub Star on GitHub Tweet

Open in GitHub Codespaces

Table of Contents

The problem

You want to write maintainable tests for your Angular 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 @testing-library/angular is a very lightweight solution for testing Angular components. It provides light utility functions on top of Angular and @testing-library/dom, 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

counter.component.ts

@Component({
  selector: 'atl-counter',
  template: `
    <span>{{ hello() }}</span>
    <button (click)="decrement()">-</button>
    <span>Current Count: {{ counter() }}</span>
    <button (click)="increment()">+</button>
  `,
})
export class CounterComponent {
  counter = model(0);
  hello = input('Hi', { alias: 'greeting' });

  increment() {
    this.counter.set(this.counter() + 1);
  }

  decrement() {
    this.counter.set(this.counter() - 1);
  }
}

counter.component.spec.ts

import { render, screen, fireEvent, aliasedInput } from '@testing-library/angular';
import { CounterComponent } from './counter.component';

describe('Counter', () => {
  it('should render counter', async () => {
    await render(CounterComponent, {
      inputs: {
        counter: 5,
        // aliases need to be specified this way
        ...aliasedInput('greeting', 'Hello Alias!'),
      },
    });

    expect(screen.getByText('Current Count: 5')).toBeVisible();
    expect(screen.getByText('Hello Alias!')).toBeVisible();
  });

  it('should increment the counter on click', async () => {
    await render(CounterComponent, { inputs: { counter: 5 } });

    const incrementButton = screen.getByRole('button', { name: '+' });
    fireEvent.click(incrementButton);

    expect(screen.getByText('Current Count: 6')).toBeVisible();
  });
});

See more examples

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies. Starting from ATL version 17, you also need to install @testing-library/dom:

npm install --save-dev @testing-library/angular @testing-library/dom

Or, you can use the ng add command. This sets up your project to use Angular Testing Library, which also includes the installation of @testing-library/dom.

ng add @testing-library/angular

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

Docs

Version compatibility

Angular Angular Testing Library
19.x 17.x, 16.x, 15.x, 14.x, 13.x
18.x 17.x, 16.x, 15.x, 14.x, 13.x
17.x 17.x, 16.x, 15.x, 14.x, 13.x
16.x 14.x, 13.x
>= 15.1 14.x, 13.x
< 15.1 12.x, 11.x
14.x 12.x, 11.x

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 Angular 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 Angular components or full Angular applications.
  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):

Tim Deschryver
Tim Deschryver

💻 📖 🚇 ⚠️
Michaël De Boey
Michaël De Boey

📖
Ignacio Le Fluk
Ignacio Le Fluk

💻 ⚠️
Tamás Szabó
Tamás Szabó

💻
Gregor Woiwode
Gregor Woiwode

💻
Toni Villena
Toni Villena

🐛 💻 📖 ⚠️
ShPelles
ShPelles

📖
Miluoshi
Miluoshi

💻 ⚠️
Nick McCurdy
Nick McCurdy

📖
Srinivasan Sekar
Srinivasan Sekar

📖
Bitcollage
Bitcollage

📖
Emil Sundin
Emil Sundin

💻
Ombrax
Ombrax

💻
Rafael Santana
Rafael Santana

💻 ⚠️ 🐛
Benjamin Blackwood
Benjamin Blackwood

📖 ⚠️
Gustavo Porto
Gustavo Porto

📖
Bo Vandersteene
Bo Vandersteene

💻
Janek
Janek

💻 ⚠️
Gleb Irovich
Gleb Irovich

💻 ⚠️
Arjen
Arjen

💻 🚧
Suguru Inatomi
Suguru Inatomi

💻 🤔
Amit Miran
Amit Miran

🚇
Jan-Willem Willebrands
Jan-Willem Willebrands

💻
Sandro
Sandro

💻 🐛
Michael Westphal
Michael Westphal

💻 ⚠️
Lukas
Lukas

💻
Matan Borenkraout
Matan Borenkraout

🚧
mleimer
mleimer

📖 ⚠️
MeIr
MeIr

🐛 ⚠️
John Dengis
John Dengis

💻 ⚠️
Rokas Brazdžionis
Rokas Brazdžionis

💻
Mateus Duraes
Mateus Duraes

💻
Josh Joseph
Josh Joseph

💻 ⚠️
Torsten Knauf
Torsten Knauf

🚧
antischematic
antischematic

🐛 🤔
Florian Pabst
Florian Pabst

💻
Mark Goho
Mark Goho

🚧 📖
Jan-Willem Baart
Jan-Willem Baart

💻 ⚠️
S. Mumenthaler
S. Mumenthaler

💻 ⚠️
Andrei Alecu
Andrei Alecu

💻 🤔 📖
Daniel Ramírez Barrientos
Daniel Ramírez Barrientos

💻
Mahdi Lazraq
Mahdi Lazraq

💻 ⚠️
Arthur Petrie
Arthur Petrie

💻
Fabien Dehopré
Fabien Dehopré

💻

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

Docs

Read The Docs | Edit the docs

FAQ

I am using Reactive Forms and the jest-dom matcher toHaveFormValues always returns an empty object or there are missing fields. Why?

Only form elements with a name attribute will have their values passed to toHaveFormsValues.

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.

Getting started with GitHub Codespaces

To get started, create a codespace for this repository by clicking this 👇

Open in GitHub Codespaces

A codespace will open in a web-based version of Visual Studio Code. The dev container is fully configured with software needed for this project.

Note: Dev containers is an open spec which is supported by GitHub Codespaces and other tools.

LICENSE

MIT

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
17.0.0-beta.40beta
17.3.724,046latest

Version History

VersionDownloads (Last 7 Days)Published
17.3.724,046
17.3.613,426
17.3.514,171
17.3.41,916
17.3.32,223
17.3.2984
17.3.111,327
17.3.01,024
17.2.20
17.2.1269
17.2.033
17.1.0654
17.0.01,003
17.0.0-beta.40
17.0.0-beta.31
17.0.0-beta.20
17.0.0-beta.10
16.0.07,257
15.2.03,436
15.1.0105
15.0.04
14.5.112,069
14.5.0203
14.4.135
14.4.00
14.3.01,462
14.2.0302
14.1.1340
14.1.097
14.0.093
14.0.0-beta.20
14.0.0-beta.11
13.4.03,268
13.3.033
13.2.13
13.2.00
13.1.0272
13.0.217
13.0.18
13.0.07
13.0.0-beta.91
12.3.03,392
12.2.2229
12.2.11
12.2.07
13.0.0-beta.81
13.0.0-beta.71
13.0.0-beta.61
13.0.0-beta.50
13.0.0-beta.40
13.0.0-beta.31
13.0.0-beta.21
13.0.0-beta.11
12.1.21,387
12.1.110
12.1.012
12.0.21
12.0.11
12.0.0261
11.0.41,749
11.0.311
11.0.2423
11.0.01
11.0.0-beta.40
11.0.0-beta.30
11.0.0-beta.20
11.0.0-beta.11
10.11.17,336
10.11.01,421
10.10.01
10.9.24
10.9.13
10.9.08
10.8.30
10.8.271
10.8.11
10.8.01
10.7.115
10.7.01,184
10.6.016
10.5.025
10.4.26
10.4.15
10.4.07
10.3.2544
10.3.110
10.3.023
10.2.113
10.2.00
10.1.40
10.1.39
10.1.20
10.1.10
10.1.01
10.0.23
10.0.113
10.0.05
9.5.0106
9.4.04
9.3.13
9.3.02
9.2.20
9.2.11
9.2.00
9.1.10
9.1.03
9.0.05
9.0.0-beta.51
9.0.0-beta.40
9.0.0-beta.32
9.0.0-beta.20
9.0.0-beta.11
8.2.058
8.1.00
8.0.40
8.0.34
8.0.20
8.0.11
8.0.01
7.6.012
7.5.00
7.4.20
7.4.10
7.4.00
7.3.00
7.2.02
7.1.11
7.1.088
7.0.20
7.0.10
7.0.01
6.1.0105
6.0.11
6.0.01
0.0.00

Package Sidebar

Install

npm i @testing-library/angular

Weekly Downloads

94,957

Version

17.3.7

License

MIT

Unpacked Size

139 kB

Total Files

21

Last publish

Collaborators

  • testing-library-bot
  • kentcdodds
  • timdeschryver
  • patrickhulce
  • dfcook
  • gpx
  • mpeyper
  • mihar-22
  • pago
  • cmckinstry
  • thymikee
  • brrianalexis
  • jdecroock
  • mdjastrzebski
  • eps1lon
  • phryneas