14 lines
		
	
	
		
			436 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			436 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  clearMocks: true,
 | 
						|
  moduleFileExtensions: ["js", "json", "vue"],
 | 
						|
  coveragePathIgnorePatterns: ["node_modules"],
 | 
						|
  testPathIgnorePatterns: ["node_modules", "<rootDir>/integration/"],
 | 
						|
  transformIgnorePatterns: ["node_modules"],
 | 
						|
  watchPathIgnorePatterns: ["<rootDir>/node_modules/"],
 | 
						|
  snapshotSerializers: ["jest-serializer-vue"],
 | 
						|
  transform: {
 | 
						|
    ".*\\.vue$": "vue-jest",
 | 
						|
    "^.+\\.js$": "babel-jest",
 | 
						|
  },
 | 
						|
};
 |