mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 05:55:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
	preset: "ts-jest",
 | 
						|
	testEnvironment: "node",
 | 
						|
	restoreMocks: true,
 | 
						|
	clearMocks: true,
 | 
						|
	collectCoverageFrom: [
 | 
						|
		"lib/**/*.ts",
 | 
						|
	],
 | 
						|
	coverageDirectory: "coverage",
 | 
						|
	coverageThreshold: {
 | 
						|
		global: {
 | 
						|
			branches: 100,
 | 
						|
			functions: 100,
 | 
						|
			lines: 100,
 | 
						|
			statements: 100,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	testRegex: /\.test\.tsx?/.source,
 | 
						|
	transform: {
 | 
						|
		[/\.test\.tsx?/.source]: [
 | 
						|
			"ts-jest", {
 | 
						|
				diagnostics: false,
 | 
						|
			},
 | 
						|
		],
 | 
						|
	},
 | 
						|
	moduleFileExtensions: ["js", "json", "jsx", "d.ts", "ts", "tsx", "node"],
 | 
						|
};
 |