summaryrefslogtreecommitdiffstatshomepage
path: root/webui/src/setupTests.js
blob: 012e25a1523627c8e7e61a9dd2d65b398881365c (plain) (blame)
1
2
3
4
5
6
import { TextEncoder } from 'util';

// jsdom, used to run tests, doesn't support text-encoder
// https://github.com/remix-run/react-router/issues/12363

global.TextEncoder = TextEncoder;