vant/packages/vant/vitest.config.ts
2024-01-05 22:55:17 +08:00

36 lines
908 B
TypeScript

import { defineConfig } from 'vitest/config';
import vitePluginVue from '@vitejs/plugin-vue';
import vitePluginJsx from '@vitejs/plugin-vue-jsx';
import { cpus } from 'os';
const cpuNum = Math.max(cpus().length - 1, 1);
export default defineConfig({
test: {
globals: true,
coverage: {
provider: 'istanbul',
include: ['src/**/*.[jt]s?(x)'],
exclude: [
'src/lazyload/vue-lazyload/**',
'**/demo/**',
'**/test/**',
'**/lang/**',
],
reporter: ['lcov', 'text-summary'],
reportsDirectory: './test/coverage',
},
pool: 'vmThreads',
poolOptions: {
vmThreads: {
// limit the memory to avoid OOM
memoryLimit: Math.min(1 / (cpuNum * 2), 0.1),
},
},
environment: 'jsdom',
include: ['src/**/*.spec.[jt]s?(x)'],
restoreMocks: true,
},
plugins: [vitePluginVue(), vitePluginJsx()],
});