forked from nodejs/nodejs.dev
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-setup.js
More file actions
23 lines (18 loc) · 595 Bytes
/
test-setup.js
File metadata and controls
23 lines (18 loc) · 595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { TextDecoder, TextEncoder } from 'util';
// eslint-disable-next-line no-underscore-dangle
global.___loader = {
enqueue: jest.fn(),
};
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;
// ICU configuration for React-Intl
Intl.NumberFormat.format = new Intl.NumberFormat('en').format;
Intl.DateTimeFormat.format = new Intl.DateTimeFormat('en').format;
const intersectionObserverMock = () => ({
observe: () => null,
unobserve: () => null,
disconnect: () => null,
});
window.IntersectionObserver = jest
.fn()
.mockImplementation(intersectionObserverMock);