mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Attempt to fix tests Test: Investigate error message Test: Attempt to fix tests Chore: Cleanup code Test: Attempt to fix tests Test: Attempt to fix tests
		
			
				
	
	
		
			34 lines
		
	
	
		
			957 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			957 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const PuppeteerEnvironment = require("jest-environment-puppeteer");
 | 
						|
const util = require("util");
 | 
						|
 | 
						|
class DebugEnv extends PuppeteerEnvironment {
 | 
						|
    async handleTestEvent(event, state) {
 | 
						|
        const ignoredEvents = [
 | 
						|
            "setup",
 | 
						|
            "add_hook",
 | 
						|
            "start_describe_definition",
 | 
						|
            "add_test",
 | 
						|
            "finish_describe_definition",
 | 
						|
            "run_start",
 | 
						|
            "run_describe_start",
 | 
						|
            "test_start",
 | 
						|
            "hook_start",
 | 
						|
            "hook_success",
 | 
						|
            "test_fn_start",
 | 
						|
            "test_fn_success",
 | 
						|
            "test_done",
 | 
						|
            "run_describe_finish",
 | 
						|
            "run_finish",
 | 
						|
            "teardown",
 | 
						|
            "test_fn_failure",
 | 
						|
        ];
 | 
						|
        if (!ignoredEvents.includes(event.name)) {
 | 
						|
            console.log(
 | 
						|
                new Date().toString() + ` Unhandled event [${event.name}] ` + util.inspect(event)
 | 
						|
            );
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = DebugEnv;
 |