setupTests.js

1import { TextEncoder } from 'util';
2
3// jsdom, used to run tests, doesn't support text-encoder
4// https://github.com/remix-run/react-router/issues/12363
5
6global.TextEncoder = TextEncoder;