Releases: testing-library/angular-testing-library
Releases · testing-library/angular-testing-library
v19.0.0
19.0.0 (2026-01-05)
Bug Fixes
Features
- add vitest-utils (0d3d140)
- update dependency versions on ng-add (961e819)
- update to Angular 21 (and switch to Vitest) (53d777d)
- upgrade peer dependency to Angular v21 (c00b4ee)
BREAKING CHANGES
- The peer dependency of Angular is update to v21
BEFORE:
Peer dependency of Angular 20.
AFTER:
Peer dependency of Angular 21.
v19.0.0-beta.3
v18.1.1
v18.1.0
v18.0.0
18.0.0 (2025-08-07)
Features
BREAKING CHANGES
- The angular minimum version has changed.
BEFORE:
Angular 17,18,19 were supported.
AFTER:
Angular 20 (and up) is supported.
Reason: The method TestBed.get has been removed.
- Angular recommends using CSS animations, https://angular.dev/guide/animations/migration
Because of the removal of the animations dependency, the NoopAnimationsModule is no longer automatically imported in the render function.
BEFORE:
The NoopAnimationsModule was always imported to the render the component.
AFTER:
Import the NoopAnimationsModule in your render configuration (where needed):
await render(SutComponent, {
imports: [NoopAnimationsModule],
});