6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
import '@testing-library/jest-dom';
|
|
|
|
// Polyfill for TextEncoder/TextDecoder in Jest
|
|
global.TextEncoder = TextEncoder;
|
|
global.TextDecoder = TextDecoder as typeof global.TextDecoder;
|
|
|