-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathjest.setup.js
37 lines (34 loc) · 1.09 KB
/
jest.setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* eslint-disable @typescript-eslint/no-var-requires */
const crypto = require('crypto');
/* eslint-enable @typescript-eslint/no-var-requires */
if (process.env.NODE_ENV !== 'development') {
global.console = {
...console,
debug: jest.fn(), // Mock console.debug
log: jest.fn(), // Mock console.log
warn: jest.fn(), // Mock console.warn
};
}
// Polyfill for crypto.getRandomValues in Node.js
if (typeof global.crypto !== 'object') {
global.crypto = crypto;
}
if (!global.crypto.getRandomValues) {
global.crypto.getRandomValues = function (buffer) {
if (!(buffer instanceof Uint8Array)) {
throw new TypeError('Expected Uint8Array');
}
if (buffer.length > 65536) {
const e = new Error();
e.message =
"Failed to execute 'getRandomValues' on 'Crypto': The ArrayBufferView's byte length (" +
buffer.length +
') exceeds the number of bytes of entropy available via this API (65536).';
e.name = 'QuotaExceededError';
throw e;
}
const bytes = crypto.randomBytes(buffer.length);
buffer.set(bytes);
return buffer;
};
}