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
Several versions back, jest-preset-angular changed the location of the preset used in setup-jest.ts
jest-preset-angular
setup-jest.ts
Before import 'jest-preset-angular';
Current import 'jest-preset-angular/setup-jest';
The schematic needs to the import path updated to the current location, otherwise you get errors like the following because zone isn't included:
"Zone is needed for the waitForAsync() test helper but could not be found..."
To Reproduce
Expected behavior Should import from the proper location.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Several versions back,
jest-preset-angular
changed the location of the preset used insetup-jest.ts
Before
import 'jest-preset-angular';
Current
import 'jest-preset-angular/setup-jest';
The schematic needs to the import path updated to the current location, otherwise you get errors like the following because zone isn't included:
To Reproduce
Expected behavior
Should import from the proper location.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: