// This file runs some code before a jest test. // polyfill TextEncoder/TextDecoder since they aren't in jsdom: const { TextEncoder, TextDecoder } = require('util'); global.TextEncoder = TextEncoder; global.TextDecoder = TextDecoder; // polyfill fetch since it's not in jsdom: require('whatwg-fetch');