5 lines
144 B
JavaScript
5 lines
144 B
JavaScript
// Global test setup
|
|
const { TextEncoder, TextDecoder } = require('util');
|
|
global.TextEncoder = TextEncoder;
|
|
global.TextDecoder = TextDecoder;
|
|
|