File size: 401 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const path = require( 'path' );

/** @type {import('@jest/types').Config.InitialOptions} */
const config = {
	globalSetup: path.join( __dirname, 'global-setup.ts' ),
	runner: 'groups',
	testEnvironment: path.join( __dirname, 'environment.ts' ),
	testRunner: 'jest-circus/runner',
	testTimeout: process.env.PWDEBUG === '1' ? 10 * 60 * 1000 : 2 * 60 * 1000,
	verbose: true,
};

module.exports = config;