test-setup.ts 223 B

123456
  1. import '@testing-library/jest-dom';
  2. import { TextEncoder, TextDecoder } from 'util';
  3. // Polyfill for TextEncoder/TextDecoder
  4. global.TextEncoder = TextEncoder;
  5. global.TextDecoder = TextDecoder as typeof global.TextDecoder;