mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
"use strict";
 | 
						|
 | 
						|
const NodeEnvironment =
 | 
						|
	// For jest@29
 | 
						|
	require("jest-environment-node").TestEnvironment ||
 | 
						|
	// For jest@27
 | 
						|
	require("jest-environment-node");
 | 
						|
 | 
						|
class CustomEnvironment extends NodeEnvironment {
 | 
						|
	constructor(config, context) {
 | 
						|
		super(config, context);
 | 
						|
	}
 | 
						|
 | 
						|
	// Workaround for `Symbol('JEST_STATE_SYMBOL')`
 | 
						|
	async handleTestEvent(event, state) {
 | 
						|
		if (!this.global.JEST_STATE_SYMBOL) {
 | 
						|
			this.global.JEST_STATE_SYMBOL = state;
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
module.exports = CustomEnvironment;
 |