mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
test: bump vitest v1.1.3 (#12546)
This commit is contained in:
parent
c07c8c6206
commit
b5645ee192
@ -61,14 +61,14 @@
|
||||
"@vant/icons": "workspace:*",
|
||||
"@vitejs/plugin-vue": "^4.5.2",
|
||||
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
||||
"@vitest/coverage-istanbul": "^1.1.0",
|
||||
"@vitest/coverage-istanbul": "^1.1.3",
|
||||
"@vue/runtime-core": "^3.4.0-rc.1",
|
||||
"@vue/test-utils": "^2.3.2",
|
||||
"diffable-html": "^5.0.0",
|
||||
"jsdom": "^22.1.0",
|
||||
"typescript": "^5.0.4",
|
||||
"vite": "^5.0.10",
|
||||
"vitest": "^1.1.0",
|
||||
"vitest": "^1.1.3",
|
||||
"vitest-canvas-mock": "^0.3.3",
|
||||
"vue": "^3.4.0-rc.1",
|
||||
"vue-router": "^4.1.6"
|
||||
|
@ -1,10 +1,9 @@
|
||||
import { defineConfig } from 'vitest/config';
|
||||
import vitePluginVue from '@vitejs/plugin-vue';
|
||||
import vitePluginJsx from '@vitejs/plugin-vue-jsx';
|
||||
import { cpus, totalmem } from 'os';
|
||||
import { cpus } from 'os';
|
||||
|
||||
const cpuNum = Math.max(cpus().length - 1, 1);
|
||||
const memory = totalmem();
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
@ -25,10 +24,7 @@ export default defineConfig({
|
||||
poolOptions: {
|
||||
vmThreads: {
|
||||
// limit the memory to avoid OOM
|
||||
memoryLimit:
|
||||
typeof memory === 'number'
|
||||
? memory * Math.min(1 / (cpuNum * 2), 0.1)
|
||||
: undefined,
|
||||
memoryLimit: Math.min(1 / (cpuNum * 2), 0.1),
|
||||
},
|
||||
},
|
||||
environment: 'jsdom',
|
||||
|
74
pnpm-lock.yaml
generated
74
pnpm-lock.yaml
generated
@ -92,8 +92,8 @@ importers:
|
||||
specifier: ^3.1.0
|
||||
version: 3.1.0(vite@5.0.10)(vue@3.4.0-rc.1)
|
||||
'@vitest/coverage-istanbul':
|
||||
specifier: ^1.1.0
|
||||
version: 1.1.0(vitest@1.1.0)
|
||||
specifier: ^1.1.3
|
||||
version: 1.1.3(vitest@1.1.3)
|
||||
'@vue/runtime-core':
|
||||
specifier: ^3.4.0-rc.1
|
||||
version: 3.4.0-rc.1
|
||||
@ -113,11 +113,11 @@ importers:
|
||||
specifier: ^5.0.10
|
||||
version: 5.0.10(@types/node@18.17.5)
|
||||
vitest:
|
||||
specifier: ^1.1.0
|
||||
version: 1.1.0(@types/node@18.17.5)(jsdom@22.1.0)
|
||||
specifier: ^1.1.3
|
||||
version: 1.1.3(@types/node@18.17.5)(jsdom@22.1.0)
|
||||
vitest-canvas-mock:
|
||||
specifier: ^0.3.3
|
||||
version: 0.3.3(vitest@1.1.0)
|
||||
version: 0.3.3(vitest@1.1.3)
|
||||
vue:
|
||||
specifier: ^3.4.0-rc.1
|
||||
version: 3.4.0-rc.1(typescript@5.1.6)
|
||||
@ -1306,7 +1306,6 @@ packages:
|
||||
|
||||
/@types/estree@1.0.5:
|
||||
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
|
||||
dev: false
|
||||
|
||||
/@types/fs-extra@11.0.1:
|
||||
resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==}
|
||||
@ -1509,8 +1508,8 @@ packages:
|
||||
vite: 5.0.10(@types/node@18.17.5)
|
||||
vue: 3.4.0-rc.1(typescript@5.1.6)
|
||||
|
||||
/@vitest/coverage-istanbul@1.1.0(vitest@1.1.0):
|
||||
resolution: {integrity: sha512-sjHGQQu7lkJUYSBMOR3f9AyOlK1LBVr0v7LMar/4i167ltabRWlQ2STBDM4P6Wl659NAcHlZ/RXxrAgJPavDMA==}
|
||||
/@vitest/coverage-istanbul@1.1.3(vitest@1.1.3):
|
||||
resolution: {integrity: sha512-pqx/RaLjJ7oxsbi0Vc/CjyXBXd86yQ0lKq1PPnk9BMNLqMTEWwfcTelcNrl41yK+IVRhHlFtwcjDva3VslbMMQ==}
|
||||
peerDependencies:
|
||||
vitest: ^1.0.0
|
||||
dependencies:
|
||||
@ -1523,45 +1522,46 @@ packages:
|
||||
magicast: 0.3.2
|
||||
picocolors: 1.0.0
|
||||
test-exclude: 6.0.0
|
||||
vitest: 1.1.0(@types/node@18.17.5)(jsdom@22.1.0)
|
||||
vitest: 1.1.3(@types/node@18.17.5)(jsdom@22.1.0)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@vitest/expect@1.1.0:
|
||||
resolution: {integrity: sha512-9IE2WWkcJo2BR9eqtY5MIo3TPmS50Pnwpm66A6neb2hvk/QSLfPXBz2qdiwUOQkwyFuuXEUj5380CbwfzW4+/w==}
|
||||
/@vitest/expect@1.1.3:
|
||||
resolution: {integrity: sha512-MnJqsKc1Ko04lksF9XoRJza0bGGwTtqfbyrsYv5on4rcEkdo+QgUdITenBQBUltKzdxW7K3rWh+nXRULwsdaVg==}
|
||||
dependencies:
|
||||
'@vitest/spy': 1.1.0
|
||||
'@vitest/utils': 1.1.0
|
||||
'@vitest/spy': 1.1.3
|
||||
'@vitest/utils': 1.1.3
|
||||
chai: 4.3.10
|
||||
dev: true
|
||||
|
||||
/@vitest/runner@1.1.0:
|
||||
resolution: {integrity: sha512-zdNLJ00pm5z/uhbWF6aeIJCGMSyTyWImy3Fcp9piRGvueERFlQFbUwCpzVce79OLm2UHk9iwaMSOaU9jVHgNVw==}
|
||||
/@vitest/runner@1.1.3:
|
||||
resolution: {integrity: sha512-Va2XbWMnhSdDEh/OFxyUltgQuuDRxnarK1hW5QNN4URpQrqq6jtt8cfww/pQQ4i0LjoYxh/3bYWvDFlR9tU73g==}
|
||||
dependencies:
|
||||
'@vitest/utils': 1.1.0
|
||||
'@vitest/utils': 1.1.3
|
||||
p-limit: 5.0.0
|
||||
pathe: 1.1.1
|
||||
dev: true
|
||||
|
||||
/@vitest/snapshot@1.1.0:
|
||||
resolution: {integrity: sha512-5O/wyZg09V5qmNmAlUgCBqflvn2ylgsWJRRuPrnHEfDNT6tQpQ8O1isNGgo+VxofISHqz961SG3iVvt3SPK/QQ==}
|
||||
/@vitest/snapshot@1.1.3:
|
||||
resolution: {integrity: sha512-U0r8pRXsLAdxSVAyGNcqOU2H3Z4Y2dAAGGelL50O0QRMdi1WWeYHdrH/QWpN1e8juWfVKsb8B+pyJwTC+4Gy9w==}
|
||||
dependencies:
|
||||
magic-string: 0.30.5
|
||||
pathe: 1.1.1
|
||||
pretty-format: 29.7.0
|
||||
dev: true
|
||||
|
||||
/@vitest/spy@1.1.0:
|
||||
resolution: {integrity: sha512-sNOVSU/GE+7+P76qYo+VXdXhXffzWZcYIPQfmkiRxaNCSPiLANvQx5Mx6ZURJ/ndtEkUJEpvKLXqAYTKEY+lTg==}
|
||||
/@vitest/spy@1.1.3:
|
||||
resolution: {integrity: sha512-Ec0qWyGS5LhATFQtldvChPTAHv08yHIOZfiNcjwRQbFPHpkih0md9KAbs7TfeIfL7OFKoe7B/6ukBTqByubXkQ==}
|
||||
dependencies:
|
||||
tinyspy: 2.2.0
|
||||
dev: true
|
||||
|
||||
/@vitest/utils@1.1.0:
|
||||
resolution: {integrity: sha512-z+s510fKmYz4Y41XhNs3vcuFTFhcij2YF7F8VQfMEYAAUfqQh0Zfg7+w9xdgFGhPf3tX3TicAe+8BDITk6ampQ==}
|
||||
/@vitest/utils@1.1.3:
|
||||
resolution: {integrity: sha512-Dyt3UMcdElTll2H75vhxfpZu03uFpXRCHxWnzcrFjZxT1kTbq8ALUYIeBgGolo1gldVdI0YSlQRacsqxTwNqwg==}
|
||||
dependencies:
|
||||
diff-sequences: 29.6.3
|
||||
estree-walker: 3.0.3
|
||||
loupe: 2.3.7
|
||||
pretty-format: 29.7.0
|
||||
dev: true
|
||||
@ -2490,6 +2490,12 @@ packages:
|
||||
/estree-walker@2.0.2:
|
||||
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
||||
|
||||
/estree-walker@3.0.3:
|
||||
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
||||
dependencies:
|
||||
'@types/estree': 1.0.5
|
||||
dev: true
|
||||
|
||||
/esutils@2.0.3:
|
||||
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@ -4041,8 +4047,8 @@ packages:
|
||||
/util-deprecate@1.0.2:
|
||||
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
||||
|
||||
/vite-node@1.1.0(@types/node@18.17.5):
|
||||
resolution: {integrity: sha512-jV48DDUxGLEBdHCQvxL1mEh7+naVy+nhUUUaPAZLd3FJgXuxQiewHcfeZebbJ6onDqNGkP4r3MhQ342PRlG81Q==}
|
||||
/vite-node@1.1.3(@types/node@18.17.5):
|
||||
resolution: {integrity: sha512-BLSO72YAkIUuNrOx+8uznYICJfTEbvBAmWClY3hpath5+h1mbPS5OMn42lrTxXuyCazVyZoDkSRnju78GiVCqA==}
|
||||
engines: {node: ^18.0.0 || >=20.0.0}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
@ -4134,17 +4140,17 @@ packages:
|
||||
fsevents: 2.3.3
|
||||
dev: false
|
||||
|
||||
/vitest-canvas-mock@0.3.3(vitest@1.1.0):
|
||||
/vitest-canvas-mock@0.3.3(vitest@1.1.3):
|
||||
resolution: {integrity: sha512-3P968tYBpqYyzzOaVtqnmYjqbe13576/fkjbDEJSfQAkHtC5/UjuRHOhFEN/ZV5HVZIkaROBUWgazDKJ+Ibw+Q==}
|
||||
peerDependencies:
|
||||
vitest: '*'
|
||||
dependencies:
|
||||
jest-canvas-mock: 2.5.2
|
||||
vitest: 1.1.0(@types/node@18.17.5)(jsdom@22.1.0)
|
||||
vitest: 1.1.3(@types/node@18.17.5)(jsdom@22.1.0)
|
||||
dev: true
|
||||
|
||||
/vitest@1.1.0(@types/node@18.17.5)(jsdom@22.1.0):
|
||||
resolution: {integrity: sha512-oDFiCrw7dd3Jf06HoMtSRARivvyjHJaTxikFxuqJjO76U436PqlVw1uLn7a8OSPrhSfMGVaRakKpA2lePdw79A==}
|
||||
/vitest@1.1.3(@types/node@18.17.5)(jsdom@22.1.0):
|
||||
resolution: {integrity: sha512-2l8om1NOkiA90/Y207PsEvJLYygddsOyr81wLQ20Ra8IlLKbyQncWsGZjnbkyG2KwwuTXLQjEPOJuxGMG8qJBQ==}
|
||||
engines: {node: ^18.0.0 || >=20.0.0}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
@ -4169,11 +4175,11 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/node': 18.17.5
|
||||
'@vitest/expect': 1.1.0
|
||||
'@vitest/runner': 1.1.0
|
||||
'@vitest/snapshot': 1.1.0
|
||||
'@vitest/spy': 1.1.0
|
||||
'@vitest/utils': 1.1.0
|
||||
'@vitest/expect': 1.1.3
|
||||
'@vitest/runner': 1.1.3
|
||||
'@vitest/snapshot': 1.1.3
|
||||
'@vitest/spy': 1.1.3
|
||||
'@vitest/utils': 1.1.3
|
||||
acorn-walk: 8.3.1
|
||||
cac: 6.7.14
|
||||
chai: 4.3.10
|
||||
@ -4189,7 +4195,7 @@ packages:
|
||||
tinybench: 2.5.1
|
||||
tinypool: 0.8.1
|
||||
vite: 5.0.10(@types/node@18.17.5)
|
||||
vite-node: 1.1.0(@types/node@18.17.5)
|
||||
vite-node: 1.1.3(@types/node@18.17.5)
|
||||
why-is-node-running: 2.2.2
|
||||
transitivePeerDependencies:
|
||||
- less
|
||||
|
Loading…
x
Reference in New Issue
Block a user