mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			452 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			452 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  name: 'API integration tests',
 | 
						|
  testMatch: ['**/?(*.)+(spec|test).e2e.js'],
 | 
						|
  testEnvironment: 'node',
 | 
						|
  setupFilesAfterEnv: ['<rootDir>/test/jest2e2.setup.js'],
 | 
						|
  testPathIgnorePatterns: ['<rootDir>/packages/core/database.old'],
 | 
						|
  coveragePathIgnorePatterns: [
 | 
						|
    '<rootDir>/dist/',
 | 
						|
    '<rootDir>/node_modules/',
 | 
						|
    '<rootDir>/out-tsc/',
 | 
						|
    '<rootDir>/test/',
 | 
						|
  ],
 | 
						|
  transform: {},
 | 
						|
  modulePathIgnorePatterns: ['.cache'],
 | 
						|
};
 |