aboutsummaryrefslogtreecommitdiffstats
path: root/config/electronJestGlobalTeardown.cjs
blob: f790a4fa3e4d49a1d21b037dba7576534314229e (plain) (blame)
1
2
3
4
5
6
7
8
const { app } = require('electron');

/** @type {(globalConfig: import('@jest/types').Config.InitialOptions) => void} */
module.exports = (globalConfig) => {
  if (!globalConfig.watch && !globalConfig.watchAll) {
    app.quit();
  }
};