Files
conference-room-booking-system/frontend/jest.setup.js
2025-08-28 09:39:18 -04:00

9 lines
229 B
JavaScript

const { TextEncoder, TextDecoder } = require("util");
if (typeof global.TextEncoder === "undefined") {
global.TextEncoder = TextEncoder;
}
if (typeof global.TextDecoder === "undefined") {
global.TextDecoder = TextDecoder;
}