Skip to content

Tags: testing-library/angular-testing-library

Tags

v18.0.0

Toggle v18.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: release v18 (#533)

* feat: update to Angular 20 (#530)

BREAKING CHANGE:

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.

* feat: remove animations dependency (#531)

BREAKING CHANGE:

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):

```ts
 await render(SutComponent, {
    imports: [NoopAnimationsModule],
});
```

* feat: add stronger types (#413)

v18.0.0-beta.8

Toggle v18.0.0-beta.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs: update Version compatibility table (#540)

v18.0.0-beta.7

Toggle v18.0.0-beta.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: re-add zoneless for render (#538)

v18.0.0-beta.6

Toggle v18.0.0-beta.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: remove zoneless config (#536)

v18.0.0-beta.5

Toggle v18.0.0-beta.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: fix config for testing with zoneless Angular (#535)

v18.0.0-beta.4

Toggle v18.0.0-beta.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add stronger types (#413)

v18.0.0-beta.3

Toggle v18.0.0-beta.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add config for testing with zoneless Angular (#532)

v18.0.0-beta.2

Toggle v18.0.0-beta.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: remove animations dependency (#531)

BREAKING CHANGE:

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:

```ts
 await render(SutComponent, {
    imports: [NoopAnimationsModule],
});
```

v18.0.0-beta.1

Toggle v18.0.0-beta.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: update to Angular 20 (#530)

BREAKING CHANGE:

The angular minimum version has changed.

BEFORE:

Angular 17,18,19 were supported.

AFTER:

Angular 20 is supported:
  - TestBed.get is removed

v17.4.0

Toggle v17.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: undeprecate componentProperties (#520)