mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-03 19:36:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			407 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			407 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  displayName: 'API integration tests',
 | 
						|
  testMatch: ['**/?(*.)+(spec|test).api.js'],
 | 
						|
  testEnvironment: 'node',
 | 
						|
  setupFilesAfterEnv: ['<rootDir>/test/jest-api.setup.js'],
 | 
						|
  coveragePathIgnorePatterns: [
 | 
						|
    '<rootDir>/dist/',
 | 
						|
    '<rootDir>/node_modules/',
 | 
						|
    '<rootDir>/out-tsc/',
 | 
						|
    '<rootDir>/test/',
 | 
						|
  ],
 | 
						|
  transform: {},
 | 
						|
  modulePathIgnorePatterns: ['.cache'],
 | 
						|
};
 |