mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 21:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			409 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			409 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license Copyright (c) 2023-2024, CKSource Holding sp. z o.o. All rights reserved.
 | 
						|
 * For licensing, see LICENSE.md.
 | 
						|
 */
 | 
						|
 | 
						|
import { defineConfig } from 'vitest/config';
 | 
						|
import svg from 'vite-plugin-svgo';
 | 
						|
 | 
						|
export default defineConfig( {
 | 
						|
	plugins: [
 | 
						|
		svg()
 | 
						|
	],
 | 
						|
	test: {
 | 
						|
		environment: "happy-dom",
 | 
						|
		include: [
 | 
						|
			'tests/**/*.[jt]s'
 | 
						|
		],
 | 
						|
		globals: true,
 | 
						|
		watch: false,
 | 
						|
		passWithNoTests: true
 | 
						|
	}
 | 
						|
} );
 |