- Define jest rootDir to limit where it looks for test files - Add missing dependency on test-frontend target so it can be ran from a clean checkout
		
			
				
	
	
		
			12 lines
		
	
	
		
			191 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			191 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default {
 | |
|   setupFilesAfterEnv: ['jest-extended'],
 | |
|   testTimeout: 20000,
 | |
|   rootDir: 'web_src',
 | |
|   testMatch: [
 | |
|     '<rootDir>/**/*.test.js',
 | |
|   ],
 | |
|   transform: {},
 | |
|   verbose: false,
 | |
| };
 | |
| 
 |