mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
8 lines
325 B
JavaScript
8 lines
325 B
JavaScript
// Polyfill missing encoders in jsdom
|
|
// https://stackoverflow.com/questions/68468203/why-am-i-getting-textencoder-is-not-defined-in-jest
|
|
import { TextEncoder, TextDecoder } from 'util'
|
|
global.TextEncoder = TextEncoder
|
|
global.TextDecoder = TextDecoder
|
|
|
|
// Metascraper takes longer nowadays, double time
|
|
jest.setTimeout(10000) |