mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore: update vitest config (#12530)
This commit is contained in:
parent
ace3311e70
commit
a3180c3aaf
@ -201,7 +201,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
Y
|
||||
</span>
|
||||
<span
|
||||
class="van-index-bar__index"
|
||||
class="van-index-bar__index van-index-bar__index--active"
|
||||
data-index="Z"
|
||||
>
|
||||
Z
|
||||
@ -908,8 +908,8 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<div class="van-index-anchor">
|
||||
<div style="height: 0px;">
|
||||
<div class="van-index-anchor van-index-anchor--sticky van-hairline--bottom">
|
||||
Z
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,9 +1,10 @@
|
||||
import { defineConfig } from 'vitest/config';
|
||||
import vitePluginVue from '@vitejs/plugin-vue';
|
||||
import vitePluginJsx from '@vitejs/plugin-vue-jsx';
|
||||
import { cpus } from 'os';
|
||||
import { cpus, totalmem } from 'os';
|
||||
|
||||
const cpuNum = Math.max(cpus().length - 1, 1);
|
||||
const memory = totalmem();
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
@ -20,12 +21,19 @@ export default defineConfig({
|
||||
reporter: ['lcov', 'text-summary'],
|
||||
reportsDirectory: './test/coverage',
|
||||
},
|
||||
pool: 'vmThreads',
|
||||
poolOptions: {
|
||||
vmThreads: {
|
||||
// limit the memory to avoid OOM
|
||||
memoryLimit:
|
||||
typeof memory === 'number'
|
||||
? memory * Math.min(1 / (cpuNum * 2), 0.1)
|
||||
: undefined,
|
||||
},
|
||||
},
|
||||
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()],
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user