Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: Module not found: Error: Can't resolve '@angular/animations/browser #519

Closed
WeiHong2305 opened this issue Mar 19, 2025 · 1 comment · Fixed by #522
Closed

Error: Module not found: Error: Can't resolve '@angular/animations/browser #519

WeiHong2305 opened this issue Mar 19, 2025 · 1 comment · Fixed by #522

Comments

@WeiHong2305
Copy link

Steps to reproduce

  1. I have a plain new Angular v19 project and added Angular Testing Library using this command
ng add @testing-library/angular 
  1. Change src/app/app.component.spec.ts content with code below
import { render, screen } from '@testing-library/angular';
import { AppComponent } from './app.component';

describe('AppComponent', () => {
  it('should render Welcome', async () => {
    await render(AppComponent);
  });
});
  1. I then proceed to run the test using
ng test

Error

Error: Module not found: Error: Can't resolve '@angular/animations/browser

I've tried importing BrowserAnimationsModule but still get the same error

import { render, screen } from '@testing-library/angular';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

describe('AppComponent', () => {
  it('should render Welcome', async () => {
    await render(AppComponent, {
      imports: [BrowserAnimationsModule],
    });
  });
});

Versions

  • Angular: ^19.2.0
  • "@testing-library/angular": "^17.3.6",
  • "@testing-library/dom": "^10.0.0",
  • "@testing-library/jest-dom": "^6.4.8",
  • "@testing-library/user-event": "^14.5.2",
@WeiHong2305
Copy link
Author

Explicitly install @angular/animations solve the issue

npm install @angular/animations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant