immich/server/vitest.config.mjs

27 lines
576 B
JavaScript
Raw Normal View History

import swc from 'unplugin-swc';
import tsconfigPaths from 'vite-tsconfig-paths';
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
root: './',
globals: true,
2024-08-20 11:50:09 +00:00
coverage: {
provider: 'v8',
include: ['src/cores/**', 'src/interfaces/**', 'src/services/**', 'src/utils/**'],
thresholds: {
lines: 80,
statements: 80,
branches: 85,
functions: 85,
},
},
server: {
deps: {
fallbackCJS: true,
},
},
},
plugins: [swc.vite(), tsconfigPaths()],
});