We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ng add @testing-library/angular
import { render, screen } from '@testing-library/angular'; import { AppComponent } from './app.component'; describe('AppComponent', () => { it('should render Welcome', async () => { await render(AppComponent); }); });
ng test
Error: Module not found: Error: Can't resolve '@angular/animations/browser
I've tried importing BrowserAnimationsModule but still get the same error
BrowserAnimationsModule
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], }); }); });
The text was updated successfully, but these errors were encountered:
Explicitly install @angular/animations solve the issue
npm install @angular/animations
Sorry, something went wrong.
3176b33
Successfully merging a pull request may close this issue.
Steps to reproduce
ng test
Error
I've tried importing
BrowserAnimationsModule
but still get the same errorVersions
The text was updated successfully, but these errors were encountered: