mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 19:49:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			387 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			387 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineConfig } from "vitest/config";
 | |
| import { configDefaults } from "vitest/config";
 | |
| 
 | |
| export default defineConfig({
 | |
|     test: {
 | |
|         exclude: [
 | |
|             ...configDefaults.exclude,
 | |
|             "build/**",
 | |
|         ],
 | |
|         setupFiles: ["./spec/setup.ts"],
 | |
|         environment: "happy-dom",
 | |
|         coverage: {
 | |
|             reporter: [ "text", "html" ],
 | |
|         }
 | |
|     }
 | |
| });
 | 
