Releases: testing-library/angular-testing-library
Releases · testing-library/angular-testing-library
v18.0.0-beta.2
18.0.0-beta.2 (2025-06-08)
Features
BREAKING CHANGES
- 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
is always imported to the render the component.
AFTER:
Import the NoopAnimationsModule
in your render configuration where needed:
await render(SutComponent, {
imports: [NoopAnimationsModule],
});
v18.0.0-beta.1
18.0.0-beta.1 (2025-06-07)
Features
BREAKING CHANGES
- The angular minimum version has changed.
BEFORE:
Angular 17,18,19 were supported.
AFTER:
Angular 20 is supported:
- TestBed.get is removed