mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Enable [globals](https://vitest.dev/config/#globals) in vitest, reducing the noise in test files.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {defineConfig} from 'vitest/config';
 | 
						|
import vuePlugin from '@vitejs/plugin-vue';
 | 
						|
import {stringPlugin} from 'vite-string-plugin';
 | 
						|
 | 
						|
export default defineConfig({
 | 
						|
  test: {
 | 
						|
    include: ['web_src/**/*.test.js'],
 | 
						|
    setupFiles: ['./web_src/js/test/setup.js'],
 | 
						|
    environment: 'jsdom',
 | 
						|
    testTimeout: 20000,
 | 
						|
    open: false,
 | 
						|
    allowOnly: true,
 | 
						|
    passWithNoTests: true,
 | 
						|
    globals: true,
 | 
						|
    watch: false,
 | 
						|
  },
 | 
						|
  plugins: [
 | 
						|
    stringPlugin(),
 | 
						|
    vuePlugin(),
 | 
						|
  ],
 | 
						|
});
 |