mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	- Update all JS dependencies minus stylelint because of https://github.com/elirasza/stylelint-stylistic/issues/12 - Misc tweaks to eslint and stylelint configs - Tested Monaco and Mermaid
		
			
				
	
	
		
			21 lines
		
	
	
		
			462 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			462 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,
 | 
						|
    watch: false,
 | 
						|
  },
 | 
						|
  plugins: [
 | 
						|
    stringPlugin(),
 | 
						|
    vuePlugin(),
 | 
						|
  ],
 | 
						|
});
 |