Move vitest setup file to root (#29097)

I'm using this convention in other projects and I think it makes sense
for gitea too because the vitest setup file is loaded globally for all
tests, not just ones in web_src, so it makes sense to be in the root.
This commit is contained in:
silverwind
2024-02-08 13:07:02 +01:00
repo.diff.committed_by GitHub
repo.diff.parent eb5ddc0a78
repo.diff.commit 98e7e3a5f0
repo.diff.stats_desc%!(EXTRA int=2, int=1, int=1)

repo.diff.view_file

@@ -5,7 +5,7 @@ import {stringPlugin} from 'vite-string-plugin';
export default defineConfig({
test: {
include: ['web_src/**/*.test.js'],
setupFiles: ['./web_src/js/test/setup.js'],
setupFiles: ['web_src/js/vitest.setup.js'],
environment: 'jsdom',
testTimeout: 20000,
open: false,