summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/jest-environment.js
blob: c3a9135b0d6d91adda350c32d2a9fa6ff3561ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* eslint-disable @typescript-eslint/no-var-requires */
const Environment = require('jest-environment-jsdom');

/**
 * Set up a custom JSDOM-based test environment for Jest so we can add things JSDOM doesn't support
 */
class CustomTestEnvironment extends Environment {
  async setup() {
    await super.setup();
    /**
     * JSDOM doesn't implement TextEncoder so we need to fake it with Node's
     *
     * Solved thanks to https://stackoverflow.com/a/57713960/2133271
     */
    if (typeof this.global.TextEncoder === 'undefined') {
      const { TextEncoder } = require('util');
      this.global.TextEncoder = TextEncoder;
    }
  }
}

module.exports = CustomTestEnvironment;