
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@testing-library/angular
Advanced tools
Simple and complete Angular testing utilities that encourage good testing practices.
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.
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.
counter.component.ts
@Component({
selector: 'counter',
template: `
<button (click)="decrement()">-</button>
<span data-testid="count">Current Count: {{ counter }}</span>
<button (click)="increment()">+</button>
`,
})
export class CounterComponent {
@Input() counter = 0;
increment() {
this.counter += 1;
}
decrement() {
this.counter -= 1;
}
}
counter.component.spec.ts
import { render } from '@testing-library/angular';
import CounterComponent from './counter.component.ts';
describe('Counter', () => {
test('should render counter', async () => {
const { getByText } = await render(CounterComponent, { componentProperties: { counter: 5 } });
expect(getByText('Current Count: 5'));
});
test('should increment the counter on click', async () => {
const { getByText, click } = await render(CounterComponent, { componentProperties: { counter: 5 } });
click(getByText('+'));
expect(getByText('Current Count: 6'));
});
});
This module is distributed via npm which is bundled with node and
should be installed as one of your project's devDependencies:
npm install @testing-library/angular --save-dev
You may also be interested in installing jest-dom so you can use
the custom jest matchers.
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:
At the end of the day, what we want is for this library to be pretty light-weight, simple, and understandable.
Thanks goes to these people (emoji key):
Tim Deschryver 💻 📖 🚇 ⚠️ | Michaël De Boey 📖 | Ignacio Le Fluk 💻 ⚠️ | Tamás Szabó 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
Looking to contribute? Look for the Good First Issue label.
Please file an issue for bugs, missing documentation, or unexpected behavior.
Please file an issue to suggest new features. Vote on feature requests by adding a 👍. This helps maintainers prioritize what to work on.
For questions related to using the library, please visit a support community instead of filing an issue on GitHub.
MIT
FAQs
Test your Angular components with the dom-testing-library
The npm package @testing-library/angular receives a total of 67,145 weekly downloads. As such, @testing-library/angular popularity was classified as popular.
We found that @testing-library/angular demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 17 open source maintainers collaborating on the project.
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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.