Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: testing-library/angular-testing-library
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v18.0.0-beta.1
Choose a base ref
...
head repository: testing-library/angular-testing-library
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v18.0.0-beta.2
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Jun 8, 2025

  1. 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],
    });
    ```
    timdeschryver authored Jun 8, 2025
    Configuration menu
    Copy the full SHA
    59f73ae View commit details
    Browse the repository at this point in the history
Loading