mirror of
				https://github.com/excalidraw/excalidraw.git
				synced 2025-11-04 12:54:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			334 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			334 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from "vitest/config";
 | 
						|
export default defineConfig({
 | 
						|
  test: {
 | 
						|
    setupFiles: ["./src/setupTests.ts"],
 | 
						|
    globals: true,
 | 
						|
    environment: "jsdom",
 | 
						|
    coverage: {
 | 
						|
      reporter: ["text", "json-summary", "json"],
 | 
						|
      lines: 70,
 | 
						|
      branches: 70,
 | 
						|
      functions: 68,
 | 
						|
      statements: 70,
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 |