aboutsummaryrefslogtreecommitdiffstats
path: root/config/electronJestEnvironment.cjs
blob: 385761eff95660e3110af194288959dacb4f3b40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const electron = require('electron');
const { TestEnvironment } = require('jest-environment-node');

module.exports = class ElectronEnvironment extends TestEnvironment {
  /** @override */
  async setup() {
    await super.setup();
    this.global.ELECTRON_MODULE = electron;
  }
};