**In my case I work with react-vite and the error was
"Test suite failed to run ReferenceError: TextEncoder is not defined"
but all I do to fix it was update the jest.setup.js with this**
import { TextDecoder, TextEncoder } from 'util';
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;