Skip to content

Commit a304036

Browse files
committedNov 15, 2024·
feat: deprecate setup-jest.js and setup-jest.mjs
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(); ```
1 parent 21c0238 commit a304036

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed
 

‎setup-jest.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
console.warn(`
2+
Importing "setup-jest.js" directly is deprecated. The file "setup-jest.js" will be removed in the future.
3+
Please use "setupZoneTestEnv" function instead. Example:
4+
5+
// setup-jest.ts
6+
import { setupZoneTestEnv } from 'jest-preset-angular/setup-env/zone';
7+
8+
setupZoneTestEnv();
9+
`);
10+
111
require('zone.js');
212
require('zone.js/testing');
313
const { TextEncoder, TextDecoder } = require('util');

‎setup-jest.mjs

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
1+
console.warn(`
2+
Importing "setup-jest.mjs" directly is deprecated. The file "setup-jest.mjs" will be removed in the future.
3+
Please use "setupZoneTestEnv" function instead. Example:
4+
5+
// setup-jest.ts
6+
import { setupZoneTestEnv } from 'jest-preset-angular/setup-env/zone/index.mjs';
7+
8+
setupZoneTestEnv();
9+
`);
10+
111
import 'zone.js';
212
import 'zone.js/testing';
13+
import { TextEncoder, TextDecoder } from 'util';
14+
315
import { getTestBed } from '@angular/core/testing';
416
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
5-
import { TextEncoder, TextDecoder } from 'util';
617

718
if (typeof globalThis.TextEncoder === 'undefined') {
819
globalThis.TextEncoder = TextEncoder;

0 commit comments

Comments
 (0)
Please sign in to comment.