mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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
|
Y
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="van-index-bar__index"
|
class="van-index-bar__index van-index-bar__index--active"
|
||||||
data-index="Z"
|
data-index="Z"
|
||||||
>
|
>
|
||||||
Z
|
Z
|
||||||
@ -908,8 +908,8 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div style="height: 0px;">
|
||||||
<div class="van-index-anchor">
|
<div class="van-index-anchor van-index-anchor--sticky van-hairline--bottom">
|
||||||
Z
|
Z
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
import { defineConfig } from 'vitest/config';
|
import { defineConfig } from 'vitest/config';
|
||||||
import vitePluginVue from '@vitejs/plugin-vue';
|
import vitePluginVue from '@vitejs/plugin-vue';
|
||||||
import vitePluginJsx from '@vitejs/plugin-vue-jsx';
|
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 cpuNum = Math.max(cpus().length - 1, 1);
|
||||||
|
const memory = totalmem();
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
test: {
|
test: {
|
||||||
@ -20,12 +21,19 @@ export default defineConfig({
|
|||||||
reporter: ['lcov', 'text-summary'],
|
reporter: ['lcov', 'text-summary'],
|
||||||
reportsDirectory: './test/coverage',
|
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',
|
environment: 'jsdom',
|
||||||
include: ['src/**/*.spec.[jt]s?(x)'],
|
include: ['src/**/*.spec.[jt]s?(x)'],
|
||||||
restoreMocks: true,
|
restoreMocks: true,
|
||||||
experimentalVmThreads: true,
|
|
||||||
// limit the memory to avoid OOM
|
|
||||||
experimentalVmWorkerMemoryLimit: Math.min(1 / (cpuNum * 2), 0.1),
|
|
||||||
},
|
},
|
||||||
plugins: [vitePluginVue(), vitePluginJsx()],
|
plugins: [vitePluginVue(), vitePluginJsx()],
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user