mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-13 19:19:52 +00:00
29 lines
606 B
TypeScript
29 lines
606 B
TypeScript
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.ts',
|
|
'tools/eslint-rules/**/*.test.ts',
|
|
],
|
|
setupFiles: ['web_src/js/vitest.setup.ts'],
|
|
environment: 'happy-dom',
|
|
testTimeout: 20000,
|
|
open: false,
|
|
allowOnly: true,
|
|
passWithNoTests: true,
|
|
globals: true,
|
|
watch: false,
|
|
isolate: false,
|
|
sequence: {
|
|
concurrent: true,
|
|
},
|
|
},
|
|
plugins: [
|
|
stringPlugin(),
|
|
vuePlugin(),
|
|
],
|
|
});
|