14 lines
		
	
	
		
			332 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			332 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  clearMocks: true,
 | 
						|
  moduleFileExtensions: ['js', 'ts'],
 | 
						|
  setupFiles: ["dotenv/config"],
 | 
						|
  testEnvironment: 'node',
 | 
						|
  testMatch: ['**/*.test.ts'],
 | 
						|
  testPathIgnorePatterns: ['/setup-buildx/', '/setup-qemu/'],
 | 
						|
  testRunner: 'jest-circus/runner',
 | 
						|
  transform: {
 | 
						|
    '^.+\\.ts$': 'ts-jest'
 | 
						|
  },
 | 
						|
  verbose: false
 | 
						|
}
 |