mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	- Add basic frontend unit testing infrastructure using jest in ESM mode - Rename 'make test' to 'make test-backend' - Introduce 'make test-frontend' and 'make test' that runs both - Bump Node.js requirement to v12. v10 will be EOL in less than a month. - Convert all build-related JS files to ESM. I opted to run frontend tests run as part of the compliance pipeline because they complete fast and are not platform-specific like the golang tests.
		
			
				
	
	
		
			11 lines
		
	
	
		
			170 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			170 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export default {
 | 
						|
  setupFilesAfterEnv: ['jest-extended'],
 | 
						|
  testTimeout: 20000,
 | 
						|
  testMatch: [
 | 
						|
    '**/web_src/**/*.test.js',
 | 
						|
  ],
 | 
						|
  transform: {},
 | 
						|
  verbose: false,
 | 
						|
};
 | 
						|
 |