mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-02 20:44:13 +01:00 
			
		
		
		
	Explicitly import them instead which is cleaner and enables better editor integration. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			734 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			734 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {defineConfig} from 'vitest/dist/config.js';
 | 
						|
import {readFile} from 'fs/promises';
 | 
						|
import {dataToEsm} from '@rollup/pluginutils';
 | 
						|
import {extname} from 'path';
 | 
						|
 | 
						|
function stringPlugin() {
 | 
						|
  return {
 | 
						|
    name: 'string-plugin',
 | 
						|
    enforce: 'pre',
 | 
						|
    async load(id) {
 | 
						|
      const path = id.split('?')[0];
 | 
						|
      if (extname(path) !== '.svg') return null;
 | 
						|
      return dataToEsm(await readFile(path, 'utf8'));
 | 
						|
    }
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
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(),
 | 
						|
  ],
 | 
						|
});
 |