You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEPRECATION
Importing `setup-jest.js`/`setup-jest.mjs` directly is deprecated. The files will be removed in the future.
Please use "setupZoneTestEnv" function instead. Example:
For CJS
```
// setup-jest.ts
import { setupZoneTestEnv } from 'jest-preset-angular/setup-env';
setupZoneTestEnv();
```
For ESM
```
// setup-jest.ts
import { setupZoneTestEnv } from 'jest-preset-angular/setup-env/index.mjs';
setupZoneTestEnv();
```
0 commit comments