mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
	
	
		
			16 lines
		
	
	
		
			486 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			486 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | require('module-alias/register'); | ||
|  | 
 | ||
|  | module.exports = { | ||
|  |   verbose: false, | ||
|  |   transform: { | ||
|  |     '^.+\\.(ts|tsx)$': 'ts-jest', | ||
|  |   }, | ||
|  |   moduleDirectories: ['node_modules', 'public'], | ||
|  |   roots: ['<rootDir>/public/e2e-test'], | ||
|  |   testRegex: '(\\.|/)(test)\\.(jsx?|tsx?)$', | ||
|  |   moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'], | ||
|  |   setupFiles: [], | ||
|  |   globals: { 'ts-jest': { isolatedModules: true } }, | ||
|  |   setupFilesAfterEnv: ['expect-puppeteer', '<rootDir>/public/e2e-test/install/install.ts'], | ||
|  | }; |