mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-26 00:09:15 +08:00
* chore(CI): update codecov/codecov-action to v3 * chore: use default test reporter * chore: use text-summary * chore: update coverage dir * chore: switch to istanbul * chore: use lcov * chore: fix open:coverage path
32 lines
876 B
TypeScript
32 lines
876 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',
|
|
},
|
|
environment: 'jsdom',
|
|
include: ['src/**/*.spec.[jt]s?(x)'],
|
|
restoreMocks: true,
|
|
experimentalVmThreads: true,
|
|
// limit the memory to avoid OOM
|
|
experimentalVmWorkerMemoryLimit: Math.min(1 / (cpuNum * 2), 0.1),
|
|
},
|
|
plugins: [vitePluginVue(), vitePluginJsx()],
|
|
});
|