* upgraded to Node16 * Enforce Prettier * code fix * jest version change and prettify code Co-authored-by: Vidya Reddy <vidyareddy@microsoft.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			353 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			353 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
   clearMocks: true,
 | 
						|
   moduleFileExtensions: ['js', 'ts'],
 | 
						|
   testEnvironment: 'node',
 | 
						|
   testMatch: ['**/*.test.ts'],
 | 
						|
   transform: {
 | 
						|
      '^.+\\.ts$': 'ts-jest'
 | 
						|
   },
 | 
						|
   verbose: true,
 | 
						|
   coverageThreshold: {
 | 
						|
      global: {
 | 
						|
         branches: 0,
 | 
						|
         functions: 14,
 | 
						|
         lines: 27,
 | 
						|
         statements: 27
 | 
						|
      }
 | 
						|
   }
 | 
						|
}
 |