mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
* For a detailed explanation regarding each configuration property and type check, visit:
 | 
						|
* https://jestjs.io/docs/en/configuration.html
 | 
						|
*/
 | 
						|
 | 
						|
const base = require('./jest.config.cjs')
 | 
						|
 | 
						|
module.exports = {
 | 
						|
	...base,
 | 
						|
	testMatch: [
 | 
						|
		"<rootDir>/test/unit/**/*.ts",
 | 
						|
		"<rootDir>/src/**/*.test.ts",
 | 
						|
	],
 | 
						|
};
 |